]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
[3.12] Remove limit in calendar CLI help message for year arg (GH-114719) (GH-114722)
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>
Mon, 29 Jan 2024 16:40:32 +0000 (17:40 +0100)
committerGitHub <noreply@github.com>
Mon, 29 Jan 2024 16:40:32 +0000 (16:40 +0000)
The limit was removed in 66c88ce30ca2b23daa37038e1a3c0de98f241f50 (GH-4109).
(cherry picked from commit 0f54ee4c6cdba74492183eb2dd142393c7dba403)

Co-authored-by: Steven Ward <planet36@users.noreply.github.com>
Lib/calendar.py

index baab52a1578929eecc8c4ddc28da4913fe1ac79c..97d7cab3365220b880bbd2b56f2c39129388362b 100644 (file)
@@ -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",