[Python-Dev] Writable doc (original) (raw)
Sreenivas Reddy T thatiparthysreenivas at gmail.com
Thu Jan 19 05:52:08 CET 2012
- Previous message: [Python-Dev] Writable __doc__
- Next message: [Python-Dev] Writable __doc__
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
this is happening on python 2.6 too.
Python 2.6.5 (r265:79063, Apr 16 2010, 13:57:41) [GCC 4.4.3] on linux2 Type "help", "copyright", "credits" or "license" for more information.
class Test(type): ... doc= File "", line 2 doc= ^ SyntaxError: invalid syntax class Test(type): ... doc='asasdas' ...
Test.doc='sadfsdff' Traceback (most recent call last): File "", line 1, in AttributeError: attribute 'doc' of 'type' objects is not writable type(Test) <type 'type'> -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://mail.python.org/pipermail/python-dev/attachments/20120119/e273ad7b/attachment.html>
- Previous message: [Python-Dev] Writable __doc__
- Next message: [Python-Dev] Writable __doc__
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]