[issue26435] Fix versionadded/versionchanged documentation directives

2016-02-25 Thread Roundup Robot
Roundup Robot added the comment: New changeset 1f8dc6f2b171 by Georg Brandl in branch '3.5': Closes #26435: fix syntax in directives. Thanks to Jakub Stasiak. https://hg.python.org/cpython/rev/1f8dc6f2b171 -- nosy: +python-dev resolution: -> fixed stage: patch review -> resolved

[issue26435] Fix versionadded/versionchanged documentation directives

2016-02-25 Thread Georg Brandl
Georg Brandl added the comment: Ok, that was a bug in rstlint. Fixed now - and now I can find quite a few instances, will fix them (most of them are in this patch). -- ___ Python tracker

[issue26435] Fix versionadded/versionchanged documentation directives

2016-02-25 Thread Georg Brandl
Georg Brandl added the comment: These are interpreted as comments by docutils. "make suspicious" only checks for markup erroneously remaining in the output. "make check", which runs tools/rstlint.py, should pick them up though. -- nosy: +georg.brandl

[issue26435] Fix versionadded/versionchanged documentation directives

2016-02-25 Thread Martin Panter
Martin Panter added the comment: Thanks for finding these. I presume they are also applicable to 3.5. There is a similar problem with the range() documentation: ./Doc/library/stdtypes.rst:1301: .. data: start ./Doc/library/stdtypes.rst:1306: .. data: stop ./Doc/library/stdtypes.rst:1310:

[issue26435] Fix versionadded/versionchanged documentation directives

2016-02-25 Thread Jakub Stasiak
New submission from Jakub Stasiak: A double colon seems to be required for a directive to work, please find a patch attached. -- assignee: docs@python components: Documentation files: typos.patch keywords: patch messages: 260848 nosy: docs@python, jstasiak priority: normal severity: