[issue11770] inspect.dir_static

2014-01-28 Thread Claudiu.Popa
Changes by Claudiu.Popa : -- nosy: +Claudiu.Popa ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.p

[issue11770] inspect.dir_static

2014-01-28 Thread Yury Selivanov
Changes by Yury Selivanov : -- versions: +Python 3.5 -Python 3.4 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue11770] inspect.dir_static

2012-09-30 Thread Tom Wardill
Changes by Tom Wardill : -- versions: +Python 3.4 -Python 3.3 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: h

[issue11770] inspect.dir_static

2011-07-15 Thread Antoine Pitrou
Changes by Antoine Pitrou : -- stage: needs patch -> patch review type: behavior -> feature request ___ Python tracker ___ ___ Python-

[issue11770] inspect.dir_static

2011-04-09 Thread Andreas Stührk
Andreas Stührk added the comment: See issue #11813 for the module problem. -- ___ Python tracker ___ ___ Python-bugs-list mailing lis

[issue11770] inspect.dir_static

2011-04-09 Thread Michael Foord
Michael Foord added the comment: Thanks for the patch Andreas. On a quick read through it looks good. I'll do a proper review shortly. -- ___ Python tracker ___ ___

[issue11770] inspect.dir_static

2011-04-08 Thread Andreas Stührk
Andreas Stührk added the comment: A first patch, misses any documentation changes. While working on it, I realised that modules technically shadow the __dict__ attribute (because modules use tp_dictoffset, hence module have a __dict__ member that points to the instance dict). I updated `_shad

[issue11770] inspect.dir_static

2011-04-08 Thread Daniel Urban
Changes by Daniel Urban : -- nosy: +durban ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.o

[issue11770] inspect.dir_static

2011-04-08 Thread Michael Foord
Michael Foord added the comment: No. It would return all members accessible to getattr_static (which is completely unrelated to what __dir__ may or may not return). Also calling __dir__ would mean code execution, and the point of these functions is to avoid this where possible. -- _

[issue11770] inspect.dir_static

2011-04-08 Thread Éric Araujo
Éric Araujo added the comment: Would it respect __dir__? -- nosy: +eric.araujo ___ Python tracker ___ ___ Python-bugs-list mailing li

[issue11770] inspect.dir_static

2011-04-07 Thread Andreas Stührk
Changes by Andreas Stührk : -- nosy: +Trundle ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.pytho

[issue11770] inspect.dir_static

2011-04-05 Thread Michael Foord
New submission from Michael Foord : A version of dir that returns all the members that can be seen by getattr_static. -- assignee: michael.foord components: Library (Lib) messages: 133017 nosy: michael.foord priority: low severity: normal stage: needs patch status: open title: inspect.d