https://github.com/python/cpython/commit/0f54ee4c6cdba74492183eb2dd142393c7dba403
commit: 0f54ee4c6cdba74492183eb2dd142393c7dba403
branch: main
author: Steven Ward <[email protected]>
committer: serhiy-storchaka <[email protected]>
date: 2024-01-29T18:00:15+02:00
summary:

Remove limit in calendar CLI help message for year arg (GH-114719)

The limit was removed in 66c88ce30ca2b23daa37038e1a3c0de98f241f50 (GH-4109).

files:
M Lib/calendar.py

diff --git a/Lib/calendar.py b/Lib/calendar.py
index 03469d8ac96bcd..3c79540f986b63 100644
--- a/Lib/calendar.py
+++ b/Lib/calendar.py
@@ -737,7 +737,7 @@ def main(args=None):
     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