[issue19795] Formatting of True/False in docs

2016-09-25 Thread Christian Heimes
Changes by Christian Heimes : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___ _

[issue19795] Formatting of True/False in docs

2013-11-29 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Thank you Arfrever. -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http

[issue19795] Formatting of True/False in docs

2013-11-29 Thread Roundup Robot
Roundup Robot added the comment: New changeset 9d0dc3d7bf01 by Serhiy Storchaka in branch '3.3': Revert unrelated changes introduced by changeset b2066bc8cab9 (issue #19795). http://hg.python.org/cpython/rev/9d0dc3d7bf01 -- ___ Python tracker

[issue19795] Formatting of True/False in docs

2013-11-29 Thread Arfrever Frehtes Taifersar Arahesis
Arfrever Frehtes Taifersar Arahesis added the comment: > New changeset b2066bc8cab9 by Serhiy Storchaka in branch '3.3': > Issue #19795: Improved markup of True/False constants. > http://hg.python.org/cpython/rev/b2066bc8cab9 Accidental, unrelated changes in Doc/library/importlib.rst (and with c

[issue19795] Formatting of True/False in docs

2013-11-29 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Thank you Georg for your help. Here is a patch which fixes markups for the None constant. It is more unequivocal. -- Added file: http://bugs.python.org/file32885/doc_none.patch ___ Python tracker

[issue19795] Formatting of True/False in docs

2013-11-29 Thread Roundup Robot
Roundup Robot added the comment: New changeset f51ca196d77a by Serhiy Storchaka in branch '2.7': Issue #19795: Improved markup of True/False constants. http://hg.python.org/cpython/rev/f51ca196d77a New changeset b2066bc8cab9 by Serhiy Storchaka in branch '3.3': Issue #19795: Improved markup of T

[issue19795] Formatting of True/False in docs

2013-11-26 Thread Serhiy Storchaka
New submission from Serhiy Storchaka: The proposed patch improves formatting of True/False in the documentation. "True" becomes "``True``" if it means True constant and "true" if it means true value (in input arguments). See also issue19793 and issue19794. -- assignee: docs@python com