https://github.com/python/cpython/commit/55bddca1338614e671101d1fd7f28fa7dc6bebc9 commit: 55bddca1338614e671101d1fd7f28fa7dc6bebc9 branch: 3.11 author: Miss Islington (bot) <[email protected]> committer: serhiy-storchaka <[email protected]> date: 2024-01-29T16:41:45Z summary:
[3.11] Remove limit in calendar CLI help message for year arg (GH-114719) (GH-114723) 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 7cdf9311b57ce2..27a1e093620c3c 100644 --- a/Lib/calendar.py +++ b/Lib/calendar.py @@ -709,7 +709,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]
