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: Docs: remove duplicate "the" in description of `%z` in datetime docs
Type: behavior Stage: resolved
Components: Documentation Versions: Python 3.6, Python 3.5
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: docs@python Nosy List: alexwlchan, berker.peksag, docs@python, python-dev
Priority: normal Keywords: patch

Created on 2016-05-04 19:03 by alexwlchan, last changed 2022-04-11 14:58 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
oneword.patch alexwlchan, 2016-05-04 19:03 review
Messages (3)
msg264848 - (view) Author: Alex Chan (alexwlchan) * Date: 2016-05-04 19:03
The description of the `%z` format code in the datetime docs reads:

> UTC offset in the form +HHMM or -HHMM (empty string if the the object is naive).

This tiny patch removes the second "the".

The current wording goes at least as far back as Python 2.6; see https://docs.python.org/2.6/library/datetime.html?highlight=datetime#strftime-and-strptime-behavior.
msg264858 - (view) Author: Roundup Robot (python-dev) (Python triager) Date: 2016-05-04 20:25
New changeset 580ddeccd689 by Berker Peksag in branch '3.5':
Issue #26957: Remove duplicate 'the' from datetime documentation
https://hg.python.org/cpython/rev/580ddeccd689

New changeset 3a069e5593ef by Berker Peksag in branch 'default':
Issue #26957: Remove duplicate 'the' from datetime documentation
https://hg.python.org/cpython/rev/3a069e5593ef
msg264859 - (view) Author: Berker Peksag (berker.peksag) * (Python committer) Date: 2016-05-04 20:26
Thanks!
History
Date User Action Args
2022-04-11 14:58:30adminsetgithub: 71144
2016-05-04 20:26:27berker.peksagsetstatus: open -> closed

type: enhancement -> behavior
versions: + Python 3.5, Python 3.6
nosy: + berker.peksag

messages: + msg264859
resolution: fixed
stage: resolved
2016-05-04 20:25:52python-devsetnosy: + python-dev
messages: + msg264858
2016-05-04 19:03:30alexwlchancreate