This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: Formatting of True/False in pathlib docs
Type: enhancement Stage: resolved
Components: Documentation Versions: Python 3.4
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: docs@python Nosy List: chris.jerdonek, docs@python, georg.brandl, pitrou, python-dev, serhiy.storchaka
Priority: normal Keywords: patch

Created on 2013-11-26 09:05 by serhiy.storchaka, last changed 2022-04-11 14:57 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
doc_pathlib_truefalse.patch serhiy.storchaka, 2013-11-26 09:06 review
Messages (4)
msg204461 - (view) Author: Serhiy Storchaka (serhiy.storchaka) * (Python committer) Date: 2013-11-26 09:05
The proposed patch improves formatting of True/False in pathlib documentation. "True" becomes "``True``" if it means True constant and "true" if it means true value.
msg204504 - (view) Author: Antoine Pitrou (pitrou) * (Python committer) Date: 2013-11-26 17:00
I think :const:`True` is the norm, but the patch looks good to me regardless.
msg204510 - (view) Author: Georg Brandl (georg.brandl) * (Python committer) Date: 2013-11-26 17:39
``False`` is actually the preferred way, being shorter and easier to read (and we don't need to link to the documentation for False).
msg204517 - (view) Author: Roundup Robot (python-dev) (Python triager) Date: 2013-11-26 19:37
New changeset 835007ccf2b0 by Serhiy Storchaka in branch 'default':
Issue #19793: Improved markup for True/False constants in pathlib documentation.
http://hg.python.org/cpython/rev/835007ccf2b0
History
Date User Action Args
2022-04-11 14:57:54adminsetgithub: 63992
2013-11-26 19:39:29serhiy.storchakasetstatus: open -> closed
resolution: fixed
stage: patch review -> resolved
2013-11-26 19:37:44python-devsetnosy: + python-dev
messages: + msg204517
2013-11-26 17:39:12georg.brandlsetnosy: + georg.brandl
messages: + msg204510
2013-11-26 17:00:22pitrousetmessages: + msg204504
2013-11-26 09:06:41serhiy.storchakasettitle: Formatting of True/Falsein in pathlib docs -> Formatting of True/False in pathlib docs
2013-11-26 09:06:10serhiy.storchakasetfiles: + doc_pathlib_truefalse.patch
keywords: + patch
2013-11-26 09:05:49serhiy.storchakacreate