Skip to content
This repository was archived by the owner on Feb 13, 2025. It is now read-only.

Commit 57720e5

Browse files
committed
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.)
1 parent e9ed560 commit 57720e5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Include/patchlevel.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@
1919
#define PY_MAJOR_VERSION 3
2020
#define PY_MINOR_VERSION 5
2121
#define PY_MICRO_VERSION 3
22-
#define PY_RELEASE_LEVEL PY_RELEASE_LEVEL_GAMMA
23-
#define PY_RELEASE_SERIAL 1
22+
#define PY_RELEASE_LEVEL PY_RELEASE_LEVEL_FINAL
23+
#define PY_RELEASE_SERIAL 0
2424

2525
/* Version as a string */
2626
#define PY_VERSION "3.5.3+"

0 commit comments

Comments
 (0)