[issue26767] Inconsistant error messages for failed attribute modification

2019-12-20 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Not all error messages contain an attribute name, an object type name and a reason. -- ___ Python tracker ___

[issue26767] Inconsistant error messages for failed attribute modification

2019-12-20 Thread Batuhan
Batuhan added the comment: > I think it would be nice to unify error messages and make them more specific. How can they can be more specific when they are unified? -- nosy: +BTaskaya versions: +Python 3.9 -Python 3.6 ___ Python tracker

[issue26767] Inconsistant error messages for failed attribute modification

2018-09-21 Thread Karthikeyan Singaravelan
Change by Karthikeyan Singaravelan : -- nosy: +xtreak ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue26767] Inconsistant error messages for failed attribute modification

2016-04-17 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- priority: normal -> low ___ Python tracker ___ ___

[issue26767] Inconsistant error messages for failed attribute modification

2016-04-15 Thread Serhiy Storchaka
New submission from Serhiy Storchaka: >>> class I(int): ... @property ... def a(self): pass ... @property ... def b(self): pass ... @b.setter ... def b(self, value): pass ... @property ... def c(self): pass ... @c.deleter ... def c(self): pass ... >>> obj