From: Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> Date: Mon, 29 Jan 2024 16:40:32 +0000 (+0100) Subject: [3.12] Remove limit in calendar CLI help message for year arg (GH-114719) (GH-114722) X-Git-Tag: v3.12.2~65 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=a316470dcaca271d050bd56b4dbfd0084510b0a4;p=thirdparty%2FPython%2Fcpython.git [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 --- diff --git a/Lib/calendar.py b/Lib/calendar.py index baab52a15789..97d7cab33652 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",