[issue11813] inspect.getattr_static doesn't get module attributes

2011-12-18 Thread Roundup Robot
Roundup Robot added the comment: New changeset 56731ccf2e86 by Michael Foord in branch '3.2': Fix inspect.getattr_static to work on modules (again). http://hg.python.org/cpython/rev/56731ccf2e86 -- nosy: +python-dev resolution: -> fixed stage: patch review -> committed/rejected status:

[issue11813] inspect.getattr_static doesn't get module attributes

2011-12-18 Thread Michael Foord
Michael Foord added the comment: I'd like to commit this patch. What's your real name Trundle, for the NEWS entry? -- assignee: -> michael.foord ___ Python tracker ___ ___

[issue11813] inspect.getattr_static doesn't get module attributes

2011-10-09 Thread Ezio Melotti
Changes by Ezio Melotti : -- priority: normal -> high ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://ma

[issue11813] inspect.getattr_static doesn't get module attributes

2011-07-15 Thread Antoine Pitrou
Changes by Antoine Pitrou : -- stage: -> patch review ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://m

[issue11813] inspect.getattr_static doesn't get module attributes

2011-04-11 Thread Éric Araujo
Changes by Éric Araujo : -- nosy: +eric.araujo ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.pyth

[issue11813] inspect.getattr_static doesn't get module attributes

2011-04-09 Thread Andreas Stührk
New submission from Andreas Stührk : My patch for issue #11133 introduced a regression: it is no longer possible to get attributes of modules. That is because modules use "tp_dictoffset" (at C level). The instance __dict__ is exposed to Python code using a types.MemberDescriptorType. My patch