[issue20643] Strange dot in documentation (after generator.close)

2014-09-05 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- assignee: docs@python -> serhiy.storchaka resolution: -> fixed stage: patch review -> resolved status: open -> closed versions: +Python 3.5 -Python 3.3 ___ Python tracker _

[issue20643] Strange dot in documentation (after generator.close)

2014-09-05 Thread Roundup Robot
Roundup Robot added the comment: New changeset bc4e26755a13 by Serhiy Storchaka in branch '3.4': Issue #20643: Removed unneeded (and wrong) class directives. http://hg.python.org/cpython/rev/bc4e26755a13 New changeset 060e347c9a23 by Serhiy Storchaka in branch 'default': Issue #20643: Removed un

[issue20643] Strange dot in documentation (after generator.close)

2014-02-23 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: It was supposed to reset current class. Perhaps correct way is to remove this directive (and other "class" directive above) at all. -- keywords: +patch nosy: +georg.brandl stage: needs patch -> patch review type: enhancement -> behavior versions: +Pyt

[issue20643] Strange dot in documentation (after generator.close)

2014-02-23 Thread Ezio Melotti
Ezio Melotti added the comment: Serhiy, you seem to have added that line (in #19190). Was it a mistake or is it supposed to do something? -- nosy: +ezio.melotti, serhiy.storchaka stage: -> needs patch type: -> enhancement ___ Python tracker

[issue20643] Strange dot in documentation (after generator.close)

2014-02-16 Thread Vladimir Rutsky
New submission from Vladimir Rutsky: In 3.4 docs after generator.close() description there is strange dot: http://docs.python.org/3.4/reference/expressions.html#generator.close Looks like it's due to following code in Doc/reference/expressions.rst:452: .. class:: . This line should be removed.