]> granicus.if.org Git - python/commitdiff
Fix incorrect patchlevel information for 3.5.3+.
authorLarry Hastings <larry@hastings.org>
Fri, 20 Jan 2017 02:36:23 +0000 (18:36 -0800)
committerLarry Hastings <larry@hastings.org>
Fri, 20 Jan 2017 02:36:23 +0000 (18:36 -0800)
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.)

Include/patchlevel.h

index 5e318cf004f6a082fe5c7713beb8e7ca6969d8f9..1ec9761b9640a8040dea1f9f1f9532a47354dfbf 100644 (file)
@@ -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+"