Python 8: no pep8, no chocolate!

This commit is contained in:
Victor Stinner 2016-03-31 23:30:53 +02:00
parent 0fc03186f7
commit 49f324f1d4
3 changed files with 2210 additions and 3 deletions

View file

@ -16,14 +16,14 @@
/* Version parsed out into numeric values */
/*--start constants--*/
#define PY_MAJOR_VERSION 3
#define PY_MINOR_VERSION 6
#define PY_MAJOR_VERSION 8
#define PY_MINOR_VERSION 0
#define PY_MICRO_VERSION 0
#define PY_RELEASE_LEVEL PY_RELEASE_LEVEL_ALPHA
#define PY_RELEASE_SERIAL 0
/* Version as a string */
#define PY_VERSION "3.6.0a0"
#define PY_VERSION "8.0.0a0"
/*--end constants--*/
/* Version as a single 4-byte hex number, e.g. 0x010502B2 == 1.5.2b2.