Message261665
| Author |
mdk |
| Recipients |
docs@python, mdk |
| Date |
2016年03月12日.22:23:24 |
| SpamBayes Score |
-1.0 |
| Marked as misclassified |
Yes |
| Message-id |
<1457821404.83.0.465984707802.issue26547@psf.upfronthosting.co.za> |
| In-reply-to |
| Content |
I spotted un undocumented term here : https://docs.python.org/3.5/library/functions.html#vars
in: "Objects such as modules and instances have an updateable __dict__ attribute; however, other objects may have write restrictions on their __dict__ attributes (for example, classes use a dictproxy to prevent direct dictionary updates)."
The term "dictproxy" is not documented anywhere in the documentation, I assume it's a https://docs.python.org/3.4/library/types.html#types.MappingProxyType, which is right:
>>> class Foo():
... pass
...
>>> vars(Foo)
mappingproxy({'__doc__': None, '__weakref__': <attribute '__weakref__' of 'Foo' objects>, '__dict__': <attribute '__dict__' of 'Foo' objects>, '__module__': '__main__'})
So I propose a patch to link to it via a :class:`dictproxy <types.MappingProxyType>`.
Should we leave "dictproxy" or change it to "mappingproxy" ? |
|
History
|
|---|
| Date |
User |
Action |
Args |
| 2016年03月12日 22:23:24 | mdk | set | recipients:
+ mdk, docs@python |
| 2016年03月12日 22:23:24 | mdk | set | messageid: <1457821404.83.0.465984707802.issue26547@psf.upfronthosting.co.za> |
| 2016年03月12日 22:23:24 | mdk | link | issue26547 messages |
| 2016年03月12日 22:23:24 | mdk | create |
|