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: Fix the typo in the description of calendar.monthcalendar(year, month)
Type: enhancement Stage: resolved
Components: Documentation Versions: Python 3.10
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: docs@python Nosy List: docs@python, miss-islington, ndini, terry.reedy
Priority: normal Keywords: patch

Created on 2020-07-07 06:37 by ndini, last changed 2022-04-11 14:59 by admin. This issue is now closed.

Pull Requests
URL Status Linked Edit
PR 21372 merged ndini, 2020-07-07 06:37
PR 21440 merged miss-islington, 2020-07-11 01:55
PR 21441 merged miss-islington, 2020-07-11 01:55
Messages (4)
msg373229 - (view) Author: Nima Dini (ndini) * Date: 2020-07-07 16:12
https://docs.python.org/3.10/library/calendar.html#calendar.monthcalendar

> days outside of the month a represented by zeros.

"a" needs to be changed to "are"
msg373496 - (view) Author: Terry J. Reedy (terry.reedy) * (Python committer) Date: 2020-07-11 01:55
New changeset 344dce312a0cf86d5a5772d54843cc179acaf6e3 by Nima Dini in branch 'master':
bpo-41228: Fix /a/are/ in monthcalendar() descripton (GH-21372)
https://github.com/python/cpython/commit/344dce312a0cf86d5a5772d54843cc179acaf6e3
msg373501 - (view) Author: miss-islington (miss-islington) Date: 2020-07-11 02:07
New changeset a77b1f6b5bb3b76cb913e62ad68f5fd803d515bd by Miss Islington (bot) in branch '3.9':
bpo-41228: Fix /a/are/ in monthcalendar() descripton (GH-21372)
https://github.com/python/cpython/commit/a77b1f6b5bb3b76cb913e62ad68f5fd803d515bd
msg373502 - (view) Author: miss-islington (miss-islington) Date: 2020-07-11 02:09
New changeset c77f71f9819022fa3adeb2f710e564a392ff24c6 by Miss Islington (bot) in branch '3.8':
bpo-41228: Fix /a/are/ in monthcalendar() descripton (GH-21372)
https://github.com/python/cpython/commit/c77f71f9819022fa3adeb2f710e564a392ff24c6
History
Date User Action Args
2022-04-11 14:59:33adminsetgithub: 85400
2020-07-11 03:04:09terry.reedysetstatus: open -> closed
resolution: fixed
stage: patch review -> resolved
2020-07-11 02:09:10miss-islingtonsetmessages: + msg373502
2020-07-11 02:07:40miss-islingtonsetmessages: + msg373501
2020-07-11 01:55:33miss-islingtonsetpull_requests: + pull_request20587
2020-07-11 01:55:26miss-islingtonsetkeywords: + patch
nosy: + miss-islington

pull_requests: + pull_request20586
stage: patch review
2020-07-11 01:55:00terry.reedysetnosy: + terry.reedy
messages: + msg373496
2020-07-07 16:12:47ndinisetmessages: + msg373229
2020-07-07 06:37:39ndinicreate