[Python-Dev] Version number in the release-maint23 branch

Thomas Heller theller at python.net
Fri Nov 14 12:09:23 EST 2003


I'd like to change the version number in the CVS release-maint23 branch
to be able to do correct version checks.

Currently it is this:

/* Version parsed out into numeric values */
#define PY_MAJOR_VERSION	2
#define PY_MINOR_VERSION	3
#define PY_MICRO_VERSION	2
#define PY_RELEASE_LEVEL	PY_RELEASE_LEVEL_FINAL
#define PY_RELEASE_SERIAL	0

/* Version as a string */
#define PY_VERSION		"2.3.2+"

Is it ok to change it to the following:

/* Version parsed out into numeric values */
#define PY_MAJOR_VERSION	2
#define PY_MINOR_VERSION	3
#define PY_MICRO_VERSION	3
#define PY_RELEASE_LEVEL	PY_RELEASE_LEVEL_ALPHA
#define PY_RELEASE_SERIAL	0

/* Version as a string */
#define PY_VERSION		"2.3.3a0"

Thomas




More information about the Python-Dev mailing list