Issue 19793: Formatting of True/False in pathlib docs (original) (raw)

This issue has been migrated to GitHub: https://github.com/python/cpython/issues/63992

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:54 admin set github: 63992
2013-11-26 19:39:29 serhiy.storchaka set status: open -> closedresolution: fixedstage: patch review -> resolved
2013-11-26 19:37:44 python-dev set nosy: + python-devmessages: +
2013-11-26 17:39:12 georg.brandl set nosy: + georg.brandlmessages: +
2013-11-26 17:00:22 pitrou set messages: +
2013-11-26 09:06:41 serhiy.storchaka set title: Formatting of True/Falsein in pathlib docs -> Formatting of True/False in pathlib docs
2013-11-26 09:06:10 serhiy.storchaka set files: + doc_pathlib_truefalse.patchkeywords: + patch
2013-11-26 09:05:49 serhiy.storchaka create