[Python-bugs-list] [ python-Bugs-472940 ] can't getattr() attribute shown by dir()

noreply@sourceforge.net noreply@sourceforge.net
Sat, 20 Oct 2001 23:22:58 -0700


Bugs item #472940, was opened at 2001-10-19 15:31
You can respond by visiting: 
http://sourceforge.net/tracker/?func=detail&atid=105470&aid=472940&group_id=5470

Category: Python Interpreter Core
Group: None
Status: Open
Resolution: None
Priority: 5
Submitted By: Jeremy Hylton (jhylton)
>Assigned to: Guido van Rossum (gvanrossum)
Summary: can't getattr() attribute shown by dir()

Initial Comment:
I occasionally write introspective code that does
something like:

for attr in dir(obj):
    print attr, getattr(obj, attr)

I ran into a problem with it, though:

>>> ArithmeticError.__init__
<unbound method ArithmeticError.__init__>
>>> dir(ArithmeticError.__init__)
['__call__', '__class__', '__cmp__', '__delattr__',
'__dict__', '__doc__', '__get__', '__getattribute__',
'__hash__', '__init__', '__name__', '__new__',
'__reduce__', '__repr__', '__setattr__', '__str__',
'im_class', 'im_func', 'im_self']
>>> '__dict__' in dir(ArithmeticError.__init__)
1
>>> ArithmeticError.__init__.__dict__
Traceback (most recent call last):
  File "<stdin>", line 1, in ?
AttributeError: 'builtin_function_or_method' object has
no attribute '__dict__'



----------------------------------------------------------------------

>Comment By: Tim Peters (tim_one)
Date: 2001-10-20 23:22

Message:
Logged In: YES 
user_id=31435

Guido, yes, the string '__dict__' is a key in

ArithmeticError.__init__.__class__.__dict__

so merge_class_dict() (object.c) merges it into the result 
dict for ArithmeticError.__init__.

Perhaps PyObject_Dir should try PyObject_HasAttr on every 
key it finds and weed out the ones that fail?  Surely a 
hack, but would fix Jeremy's problem. simply by trying it 
before he does <wink>.

----------------------------------------------------------------------

Comment By: Guido van Rossum (gvanrossum)
Date: 2001-10-20 06:01

Message:
Logged In: YES 
user_id=6380

For Tim.

Is it possible that the __dict__ comes from looking at all
the attributes of foo.__class__?
ArithmeticError.__init__.__class__ has a __dict__ attribute.

----------------------------------------------------------------------

You can respond by visiting: 
http://sourceforge.net/tracker/?func=detail&atid=105470&aid=472940&group_id=5470