On Sun, Nov 19, 2017 at 4:57 PM, Steven D'Aprano <steve at pearwood.info> wrote: > On Sun, Nov 19, 2017 at 08:24:00PM +0000, Mark Shannon wrote: > > Just one comment. Could the new behaviour of attribute lookup on a > > module be spelled out more explicitly please? > > > > > > I'm guessing it is now something like: > > > > `module.__getattribute__` is now equivalent to: > > > > def __getattribute__(mod, name): > > try: > > return object.__getattribute__(mod, name) > > except AttributeError: > > try: > > getter = mod.__dict__["__getattr__"] > > A minor point: this should(?) be written in terms of the public > interface for accessing namespaces, namely: > > getter = vars(mod)["__getattr__"] > Should it? The PEP is not proposing anything for other namespaces. What difference do you envision this way of specifying it would make? -- --Guido van Rossum (python.org/~guido) -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://mail.python.org/pipermail/python-dev/attachments/20171119/ee25c346/attachment.html>
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4