diff options
author | Barry Warsaw <barry@python.org> | 2008-03-01 02:23:38 (GMT) |
---|---|---|
committer | Barry Warsaw <barry@python.org> | 2008-03-01 02:23:38 (GMT) |
commit | 52973611986054506713170a4665e763322eb4ec (patch) | |
tree | ec54c6a4b1271f4e466ab696597e9e0d5e0c7490 | |
parent | 1cc60ed214d83b1901a9e68782559c18f705ff07 (diff) | |
download | cpython-52973611986054506713170a4665e763322eb4ec.zip cpython-52973611986054506713170a4665e763322eb4ec.tar.gz cpython-52973611986054506713170a4665e763322eb4ec.tar.bz2 |
Bump to version 2.6a1
-rw-r--r-- | Include/patchlevel.h | 4 | ||||
-rw-r--r-- | Misc/NEWS | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/Include/patchlevel.h b/Include/patchlevel.h index 1753370..8c1af78 100644 --- a/Include/patchlevel.h +++ b/Include/patchlevel.h @@ -23,10 +23,10 @@ #define PY_MINOR_VERSION 6 #define PY_MICRO_VERSION 0 #define PY_RELEASE_LEVEL PY_RELEASE_LEVEL_ALPHA -#define PY_RELEASE_SERIAL 0 +#define PY_RELEASE_SERIAL 1 /* Version as a string */ -#define PY_VERSION "2.6a0" +#define PY_VERSION "2.6a1" /* Subversion Revision number of this file (not of the repository) */ #define PY_PATCHLEVEL_REVISION "$Revision$" @@ -12,8 +12,8 @@ What's New in Python 2.6 alpha 1? Core and builtins ----------------- -- Issue #2051: pyc and pyo files are not longer created with permission 644. The - mode is now inherited from the py file. +- Issue #2051: pyc and pyo files are not longer created with permission + 644. The mode is now inherited from the py file. - Issue #2067: file.__exit__() now calls subclasses' close() method. |