Christian Heimes <[EMAIL PROTECTED]> added the comment:

No, they don't work correctly. Readonly properties in old style classes
aren't readonly:

>>> class Example:
...     @property
...     def spam(self):
...         return "spam"
...
>>> example = Example()
>>> example.spam
'spam'
>>> example.spam = "egg"
>>> example.spam
'egg'

----------
nosy: +christian.heimes

_______________________________________
Python tracker <[EMAIL PROTECTED]>
<http://bugs.python.org/issue3658>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to