]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Remove limit in calendar CLI help message for year arg (GH-114719)
authorSteven Ward <planet36@users.noreply.github.com>
Mon, 29 Jan 2024 16:00:15 +0000 (11:00 -0500)
committerGitHub <noreply@github.com>
Mon, 29 Jan 2024 16:00:15 +0000 (18:00 +0200)
The limit was removed in 66c88ce30ca2b23daa37038e1a3c0de98f241f50 (GH-4109).

Lib/calendar.py

index 03469d8ac96bcd927b2783de413372bbcf038025..3c79540f986b63c8eb326aea4a60f19eb5f5a656 100644 (file)
@@ -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",