]> granicus.if.org Git - python/commitdiff
Bump to version 2.6a1
authorBarry Warsaw <barry@python.org>
Sat, 1 Mar 2008 02:23:38 +0000 (02:23 +0000)
committerBarry Warsaw <barry@python.org>
Sat, 1 Mar 2008 02:23:38 +0000 (02:23 +0000)
Include/patchlevel.h
Misc/NEWS

index 175337085cf15e0e58cf2a48734bc5d002206a00..8c1af78ae1af56549746ad6c9f0f5c99128ea45c 100644 (file)
 #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$"
index 4162b4c69de54e2e1cbb24977c520384d3b4b744..0b360611ff430b1eb0880df53703bc70a5c68c0e 100644 (file)
--- 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.