[issue7186] Document specialness of __doc__, and possibly other special attributes

2014-10-17 Thread Ethan Furman
Ethan Furman added the comment: Patch attached for the __doc__ attribute. -- keywords: +patch nosy: +ethan.furman stage: needs patch - patch review Added file: http://bugs.python.org/file36956/issue7186.stoneleaf.01.patch ___ Python tracker

[issue7186] Document specialness of __doc__, and possibly other special attributes

2014-10-17 Thread R. David Murray
R. David Murray added the comment: Looks fine to me. -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue7186 ___ ___ Python-bugs-list mailing list

[issue7186] Document specialness of __doc__, and possibly other special attributes

2014-10-17 Thread Roundup Robot
Roundup Robot added the comment: New changeset 7c183c782401 by Ethan Furman in branch '3.4': Issue7186: document that __doc__ is not inherited by subclasses https://hg.python.org/cpython/rev/7c183c782401 New changeset cb8606fc84df by Ethan Furman in branch 'default': Issue7186: document that

[issue7186] Document specialness of __doc__, and possibly other special attributes

2014-10-17 Thread Ethan Furman
Changes by Ethan Furman et...@stoneleaf.us: -- resolution: - fixed stage: patch review - resolved status: open - closed ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue7186 ___

[issue7186] Document specialness of __doc__, and possibly other special attributes

2014-10-17 Thread Ethan Furman
Changes by Ethan Furman et...@stoneleaf.us: -- versions: +Python 3.4, Python 3.5 -Python 2.7, Python 3.1, Python 3.2 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue7186 ___

[issue7186] Document specialness of __doc__, and possibly other special attributes

2012-08-27 Thread Chris Rebert
Changes by Chris Rebert pyb...@rebertia.com: -- nosy: +cvrebert ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue7186 ___ ___ Python-bugs-list

[issue7186] Document specialness of __doc__, and possibly other special attributes

2010-11-15 Thread R. David Murray
R. David Murray rdmur...@bitdance.com added the comment: No, because that patch doesn't document the special inheritance rules for __doc__ (which are uniquely special even among special methods). Now, exactly where one would want to document those rules, I'm not sure. -- nosy:

[issue7186] Document specialness of __doc__, and possibly other special attributes

2010-11-15 Thread Ezio Melotti
Changes by Ezio Melotti ezio.melo...@gmail.com: -- nosy: +ezio.melotti ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue7186 ___ ___ Python-bugs-list

[issue7186] Document specialness of __doc__, and possibly other special attributes

2010-11-11 Thread Éric Araujo
Éric Araujo mer...@netwok.org added the comment: Is this obsoleted by #9451? -- nosy: +eric.araujo versions: -Python 2.6 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue7186 ___

[issue7186] Document specialness of __doc__, and possibly other special attributes

2010-08-04 Thread Florent Xicluna
Florent Xicluna florent.xicl...@gmail.com added the comment: This is similar with #9438, about __debug__ being read-only. -- nosy: +flox stage: - needs patch versions: +Python 2.6, Python 2.7, Python 3.1, Python 3.2 ___ Python tracker

[issue7186] Document specialness of __doc__, and possibly other special attributes

2010-08-04 Thread Florent Xicluna
Changes by Florent Xicluna florent.xicl...@gmail.com: -- keywords: +easy ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue7186 ___ ___

[issue7186] Document specialness of __doc__, and possibly other special attributes

2010-08-03 Thread Dirkjan Ochtman
Changes by Dirkjan Ochtman dirk...@ochtman.nl: -- nosy: +djc ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue7186 ___ ___ Python-bugs-list mailing

[issue7186] Document specialness of __doc__, and possibly other special attributes

2010-08-03 Thread Mark Lawrence
Changes by Mark Lawrence breamore...@yahoo.co.uk: -- assignee: georg.brandl - d...@python nosy: +d...@python ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue7186 ___

[issue7186] Document specialness of __doc__, and possibly other special attributes

2009-10-22 Thread steve steiner
New submission from steve steiner sstei...@users.sourceforge.net: Around the time of the 2.6.4 release, it was suggested that Python 2.6.3 changed the __doc__ attribute to read-only. See: http://bugs.python.org/issue7183 When asked whether this read-only behaviour was intentional, Guido