From: Barry Warsaw Date: Sat, 1 Mar 2008 02:23:38 +0000 (+0000) Subject: Bump to version 2.6a1 X-Git-Tag: v2.6a1~7 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=52973611986054506713170a4665e763322eb4ec;p=thirdparty%2FPython%2Fcpython.git Bump to version 2.6a1 --- diff --git a/Include/patchlevel.h b/Include/patchlevel.h index 175337085cf1..8c1af78ae1af 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$" diff --git a/Misc/NEWS b/Misc/NEWS index 4162b4c69de5..0b360611ff43 100644 --- a/Misc/NEWS +++ b/Misc/NEWS @@ -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.