Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
d030b9e8
Commit
d030b9e8
authored
Nov 04, 2016
by
Ned Deily
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Issue #28616: Correct help for sys.version_info releaselevel component.
Patch by Anish Tambe.
parent
c8bb1ac8
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
1 deletion
+2
-1
Misc/ACKS
Misc/ACKS
+1
-0
Python/sysmodule.c
Python/sysmodule.c
+1
-1
No files found.
Misc/ACKS
View file @
d030b9e8
...
...
@@ -1462,6 +1462,7 @@ Takase Arihiro
Indra Talip
Neil Tallim
Geoff Talvola
Anish Tambe
Musashi Tamura
William Tanksley
Christian Tanzer
...
...
Python/sysmodule.c
View file @
d030b9e8
...
...
@@ -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
}
};
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment