https://github.com/python/cpython/commit/a316470dcaca271d050bd56b4dbfd0084510b0a4
commit: a316470dcaca271d050bd56b4dbfd0084510b0a4
branch: 3.12
author: Miss Islington (bot) <[email protected]>
committer: serhiy-storchaka <[email protected]>
date: 2024-01-29T16:40:32Z
summary:

[3.12] Remove limit in calendar CLI help message for year arg (GH-114719) 
(GH-114722)

The limit was removed in 66c88ce30ca2b23daa37038e1a3c0de98f241f50 (GH-4109).
(cherry picked from commit 0f54ee4c6cdba74492183eb2dd142393c7dba403)

Co-authored-by: Steven Ward <[email protected]>

files:
M Lib/calendar.py

diff --git a/Lib/calendar.py b/Lib/calendar.py
index baab52a1578929..97d7cab3365220 100644
--- a/Lib/calendar.py
+++ b/Lib/calendar.py
@@ -739,7 +739,7 @@ def main(args):
     parser.add_argument(
         "year",
         nargs='?', type=int,
-        help="year number (1-9999)"
+        help="year number"
     )
     parser.add_argument(
         "month",

_______________________________________________
Python-checkins mailing list -- [email protected]
To unsubscribe send an email to [email protected]
https://mail.python.org/mailman3/lists/python-checkins.python.org/
Member address: [email protected]

Reply via email to