[issue15360] Behavior of assigning to __dict__ is not documented

2017-07-13 Thread Malcolm Smith
Changes by Malcolm Smith : -- nosy: +Malcolm Smith ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail

[issue15360] Behavior of assigning to __dict__ is not documented

2012-07-26 Thread Antoine Pitrou
Antoine Pitrou added the comment: I think assigning to __dict__ is an implementation detail; we shouldn't document it before it is clearly agreed what it should do (which probably deserves asking on python-dev). -- nosy: +pitrou ___ Python tracker

[issue15360] Behavior of assigning to __dict__ is not documented

2012-07-25 Thread Chris Rebert
Changes by Chris Rebert : -- nosy: +cvrebert ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python

[issue15360] Behavior of assigning to __dict__ is not documented

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

[issue15360] Behavior of assigning to __dict__ is not documented

2012-07-22 Thread Ezio Melotti
Changes by Ezio Melotti : -- nosy: +ezio.melotti stage: -> needs patch type: -> enhancement ___ Python tracker ___ ___ Python-bugs-l

[issue15360] Behavior of assigning to __dict__ is not documented

2012-07-20 Thread Davide Rizzo
Davide Rizzo added the comment: Amaury, I don't honestly know, I would have proposed something otherwise. I have been advised on #python (Freenode) not to assign to obj.__dict__ because its behaviour changes between versions and implementations, but I wouldn't know what has changed between CP

[issue15360] Behavior of assigning to __dict__ is not documented

2012-07-18 Thread Arfrever Frehtes Taifersar Arahesis
Changes by Arfrever Frehtes Taifersar Arahesis : -- nosy: +Arfrever ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscri

[issue15360] Behavior of assigning to __dict__ is not documented

2012-07-18 Thread Amaury Forgeot d'Arc
Amaury Forgeot d'Arc added the comment: What kind of behavior are you referring to? Are there really differences between versions? -- nosy: +amaury.forgeotdarc ___ Python tracker __

[issue15360] Behavior of assigning to __dict__ is not documented

2012-07-15 Thread Davide Rizzo
New submission from Davide Rizzo : The documentation (at least the obvious places, see Doc/reference/datamodel.rst) says classes and class instances have the '__dict__' attribute, but nothing is said about what happens when assigning to it (like obj.__dict__ = something). As far as I understa