[Python-checkins] cpython (3.5): Fix incorrect patchlevel information for 3.5.3+.

larry.hastings python-checkins at python.org
Thu Jan 19 21:47:00 EST 2017


https://hg.python.org/cpython/rev/91f0617053e7
changeset:   106237:91f0617053e7
branch:      3.5
parent:      106225:87e8139420ed
user:        Larry Hastings <larry at hastings.org>
date:        Thu Jan 19 18:36:23 2017 -0800
summary:
  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.)

files:
  Include/patchlevel.h |  4 ++--
  1 files changed, 2 insertions(+), 2 deletions(-)


diff --git a/Include/patchlevel.h b/Include/patchlevel.h
--- a/Include/patchlevel.h
+++ b/Include/patchlevel.h
@@ -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+"

-- 
Repository URL: https://hg.python.org/cpython


More information about the Python-checkins mailing list