mirror of
https://github.com/python/cpython.git
synced 2026-01-06 15:32:22 +00:00
Fix incorrect patchlevel information for 3.5.3+.
It got messed up when I merged my private 3.5.3 release changes with new work happening in the 3.5 main branch. (3.5 main branch was in "3.5.3rc1", my branch was "3.5.3+", and Mercurial helpfully merged the two in a kind of nonsense way.)
This commit is contained in:
parent
e9ed560fce
commit
57720e5e37
1 changed files with 2 additions and 2 deletions
|
|
@ -19,8 +19,8 @@
|
|||
#define PY_MAJOR_VERSION 3
|
||||
#define PY_MINOR_VERSION 5
|
||||
#define PY_MICRO_VERSION 3
|
||||
#define PY_RELEASE_LEVEL PY_RELEASE_LEVEL_GAMMA
|
||||
#define PY_RELEASE_SERIAL 1
|
||||
#define PY_RELEASE_LEVEL PY_RELEASE_LEVEL_FINAL
|
||||
#define PY_RELEASE_SERIAL 0
|
||||
|
||||
/* Version as a string */
|
||||
#define PY_VERSION "3.5.3+"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue