From: Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> Date: Mon, 29 Jan 2024 16:41:45 +0000 (+0100) Subject: [3.11] Remove limit in calendar CLI help message for year arg (GH-114719) (GH-114723) X-Git-Tag: v3.11.8~57 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=55bddca1338614e671101d1fd7f28fa7dc6bebc9;p=thirdparty%2FPython%2Fcpython.git [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 --- diff --git a/Lib/calendar.py b/Lib/calendar.py index 7cdf9311b57c..27a1e093620c 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",