[IronPython] UnicodeError's object attribute

Dino Viehland dinov at exchange.microsoft.com
Tue Nov 28 19:35:11 CET 2006


Still catching up on e-mail after last week (it was Thanksgiving here).  Thanks for reporting this and following up.

This is just a silly copy & paste error in ExceptionConverter.cs.  UnicodeErrorInit has the line:

Ops.SetAttr(DefaultContext.Default, self, SymbolTable.StringToId("@object"), @object);

Which should be:

Ops.SetAttr(DefaultContext.Default, self, SymbolTable.StringToId("object"), @object);


I've opened bug #6010 (http://www.codeplex.com/WorkItem/View.aspx?ProjectName=IronPython&WorkItemId=6010).

-----Original Message-----
From: users-bounces at lists.ironpython.com [mailto:users-bounces at lists.ironpython.com] On Behalf Of Sanghyeon Seo
Sent: Monday, November 27, 2006 7:16 PM
To: Discussion of IronPython
Subject: Re: [IronPython] UnicodeError's object attribute

2006/11/20, Sanghyeon Seo <sanxiyn at gmail.com>:
> UnicodeError objects don't have "object" attribute. It turns out that,
> they have, "@object" attribute instead!

Any idea on this?

--
Seo Sanghyeon
_______________________________________________
users mailing list
users at lists.ironpython.com
http://lists.ironpython.com/listinfo.cgi/users-ironpython.com



More information about the Ironpython-users mailing list