summaryrefslogtreecommitdiffstats
path: root/Include
diff options
context:
space:
mode:
authorLarry Hastings <larry@hastings.org>2017-01-20 02:36:23 (GMT)
committerLarry Hastings <larry@hastings.org>2017-01-20 02:36:23 (GMT)
commit57720e5e371f22f7de0f5abf4424df6c80966da7 (patch)
tree73241e1b3288a18038b0b166ee2f0fdb88bcc3db /Include
parente9ed560fcec8d2d1f9705e93049cdb3790d40838 (diff)
downloadcpython-57720e5e371f22f7de0f5abf4424df6c80966da7.zip
cpython-57720e5e371f22f7de0f5abf4424df6c80966da7.tar.gz
cpython-57720e5e371f22f7de0f5abf4424df6c80966da7.tar.bz2
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.)
Diffstat (limited to 'Include')
-rw-r--r--Include/patchlevel.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/Include/patchlevel.h b/Include/patchlevel.h
index 5e318cf..1ec9761 100644
--- 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+"