summaryrefslogtreecommitdiffstats
path: root/Python
diff options
context:
space:
mode:
authorNed Deily <nad@python.org>2016-11-04 21:03:34 (GMT)
committerNed Deily <nad@python.org>2016-11-04 21:03:34 (GMT)
commitda4887a88d4400ef12aca0bb8269838d2c9f9a00 (patch)
treed013d73f5fa6e1f2277f6b313ffcdfbed75bf19f /Python
parent600a349781bfa0a8239e1cb95fac29c7c4a3302e (diff)
downloadcpython-da4887a88d4400ef12aca0bb8269838d2c9f9a00.zip
cpython-da4887a88d4400ef12aca0bb8269838d2c9f9a00.tar.gz
cpython-da4887a88d4400ef12aca0bb8269838d2c9f9a00.tar.bz2
Issue #28616: Correct help for sys.version_info releaselevel component.
Patch by Anish Tambe.
Diffstat (limited to 'Python')
-rw-r--r--Python/sysmodule.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/sysmodule.c b/Python/sysmodule.c
index f688349..1dc7d7c 100644
--- a/Python/sysmodule.c
+++ b/Python/sysmodule.c
@@ -1619,7 +1619,7 @@ static PyStructSequence_Field version_info_fields[] = {
{"major", "Major release number"},
{"minor", "Minor release number"},
{"micro", "Patch release number"},
- {"releaselevel", "'alpha', 'beta', 'candidate', or 'release'"},
+ {"releaselevel", "'alpha', 'beta', 'candidate', or 'final'"},
{"serial", "Serial release number"},
{0}
};