| Store | Cart

[Python-Dev] [IronPython] Exception for setting attributes of built-in type

From: Dino Viehland <din...@microsoft.com>
Thu, 2 Jul 2009 23:45:39 +0000
Seo wrote:
> Exception for setting attributes of built-in type differs between> CPython and IronPython. This is not purely theoretical, as> zope.interface tries to set Implements declaration as __implemented__> attribute of built-in type object, and excepts TypeError.>> Python 2.6.1> >>> object.flag = True> TypeError: can't set attributes of built-in/extension type 'object'>> IronPython 2.6> >>> object.flag = True> AttributeError: 'object' object has no attribute 'flag'>> I was surprised that CPython raises TypeError. Library Reference seems> to mention it here:>> exception AttributeError> Raised when an attribute reference or assignment fails. (When an> object does not support attribute references or attribute assignments> at all, TypeError is raised.)> http://docs.python.org/library/exceptions.html>> What does it mean that "an object does not support attribute> references or attribute assignments at all"?

Even though Guido said we didn't have to match it I've updated IronPython
so that we'll throw the same exception now.  The change will be in
tomorrow's source push to CodePlex.  We've matched specific exceptions
in the past and this one is at least documented :)

Recent Messages in this Thread
Seo Sanghyeon Jun 14, 2009 07:09 pm
Terry Reedy Jun 14, 2009 10:40 pm
MRAB Jun 14, 2009 10:42 pm
Guido van Rossum Jun 14, 2009 11:19 pm
Nick Coghlan Jun 15, 2009 11:27 am
Benjamin Peterson Jun 15, 2009 07:09 pm
Nick Coghlan Jun 15, 2009 09:31 pm
Guido van Rossum Jun 15, 2009 02:48 pm
Dino Viehland Jun 15, 2009 03:54 pm
Michael Foord Jun 15, 2009 04:10 pm
Guido van Rossum Jun 15, 2009 05:10 pm
Michael Foord Jun 15, 2009 05:20 pm
Dino Viehland Jul 02, 2009 11:45 pm
Messages in this thread