]> granicus.if.org Git - python/commitdiff
Version bump to 3.2 final.
authorGeorg Brandl <georg@python.org>
Sun, 20 Feb 2011 10:29:04 +0000 (10:29 +0000)
committerGeorg Brandl <georg@python.org>
Sun, 20 Feb 2011 10:29:04 +0000 (10:29 +0000)
Include/patchlevel.h
Lib/distutils/__init__.py
Lib/idlelib/idlever.py
Misc/NEWS
Misc/RPM/python-3.2.spec
README

index 14204001fcae13093752280e90d952f5074c8706..d0a5a25f963ea3fccb3104e2119c8fb4e6fdfa33 100644 (file)
 #define PY_MAJOR_VERSION       3
 #define PY_MINOR_VERSION       2
 #define PY_MICRO_VERSION       0
-#define PY_RELEASE_LEVEL       PY_RELEASE_LEVEL_GAMMA
-#define PY_RELEASE_SERIAL      3
+#define PY_RELEASE_LEVEL       PY_RELEASE_LEVEL_FINAL
+#define PY_RELEASE_SERIAL      0
 
 /* Version as a string */
-#define PY_VERSION             "3.2rc3+"
+#define PY_VERSION             "3.2"
 /*--end constants--*/
 
 /* Subversion Revision number of this file (not of the repository) */
index 8a7e3ff92bef69baa7cea6d56a911249989f5b63..49b6d517f6ccba0484b4aea05511f2f18baddd55 100644 (file)
@@ -15,5 +15,5 @@ __revision__ = "$Id$"
 # Updated automatically by the Python release process.
 #
 #--start constants--
-__version__ = "3.2rc3"
+__version__ = "3.2"
 #--end constants--
index 165475c938b09e1e718e46004a9a9a676f296f5f..5b0907e1e1856beb7db70c421c6c100d908ea9d7 100644 (file)
@@ -1 +1 @@
-IDLE_VERSION = "3.2rc3"
+IDLE_VERSION = "3.2"
index ff6fd230854394f865132d4fcd56d47ff97df561..c34a540820e8b2b7d15ade87590502c20e920467 100644 (file)
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -12,9 +12,6 @@ Core and Builtins
 
 - Issue #11249: Fix potential crashes when using the limited API.
 
-Library
--------
-
 Build
 -----
 
@@ -42,40 +39,40 @@ Core and Builtins
 
 - Issue #11135: Remove redundant doc field from PyType_Spec.
 
-- Issue #11067: Add PyType_GetFlags, to support PyUnicode_Check
-  in the limited ABI.
+- Issue #11067: Add PyType_GetFlags, to support PyUnicode_Check in the limited
+  ABI.
 
 - Issue #11118: Fix bogus export of None in python3.dll.
 
 Library
 -------
 
-- Issue #11116: any error during addition of a message to a mailbox now causes
-  rollback, instead of leaving the mailbox partially modified.
+- Issue #11116: any error during addition of a message to a mailbox now causes a
+  rollback, instead of leaving the mailbox partially modified.
 
-- Issue #11132: Fix passing of "optimize" parameter when recursing
-  in compileall.compile_dir().
+- Issue #11132: Fix passing of "optimize" parameter when recursing in
+  compileall.compile_dir().
 
 - Issue #11110: Fix a potential decref of a NULL in sqlite3.
 
-- Issue #8275: Fix passing of callback arguments with ctypes under Win64.
-  Patch by Stan Mihai.
+- Issue #8275: Fix passing of callback arguments with ctypes under Win64.  Patch
+  by Stan Mihai.
 
 Build
 -----
 
-- Issue #11079: The /Applications/Python x.x folder created by the Mac
-  OS X installers now includes a link to the installed documentation
-  and no longer includes an Extras directory.  The Tools directory is
-  now installed in the framework under share/doc.
+- Issue #11079: The /Applications/Python x.x folder created by the Mac OS X
+  installers now includes a link to the installed documentation and no longer
+  includes an Extras directory.  The Tools directory is now installed in the
+  framework under share/doc.
 
 - Issue #11121: Fix building with --enable-shared.
 
 Tests
 -----
 
-- Issue #10971: test_zipimport_support is once again compatible with the
-  refleak hunter feature of test.regrtest.
+- Issue #10971: test_zipimport_support is once again compatible with the refleak
+  hunter feature of test.regrtest.
 
 
 What's New in Python 3.2 Release Candidate 2?
index 87f2918417b6e354fa64bb640dd34583fc7387ce..a5ecdc703ad9f01233b1927a81562abc9318192f 100644 (file)
@@ -39,7 +39,7 @@
 
 %define name python
 #--start constants--
-%define version 3.2rc3
+%define version 3.2
 %define libvers 3.2
 #--end constants--
 %define release 1pydotorg
diff --git a/README b/README
index 08397984e9feaeaeb4596f72e151191b1c12cc30..5215aef98542c666738749a20fc406843548e210 100644 (file)
--- a/README
+++ b/README
@@ -1,9 +1,8 @@
-This is Python version 3.2, release candidate 3
-===============================================
+This is Python version 3.2
+==========================
 
 Copyright (c) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011
-Python Software Foundation.
-All rights reserved.
+Python Software Foundation.  All rights reserved.
 
 Python 3.x is a new version of the language, which is incompatible with the 2.x
 line of releases.  The language is mostly the same, but many details, especially
@@ -153,8 +152,8 @@ Proposals for enhancement
 -------------------------
 
 If you have a proposal to change Python, you may want to send an email to the
-comp.lang.python or python-ideas mailing lists for inital feedback. A Python
-Enhancement Proposal (PEP) may be submitted if your idea gains ground. All
+comp.lang.python or python-ideas mailing lists for inital feedback.  A Python
+Enhancement Proposal (PEP) may be submitted if your idea gains ground.  All
 current PEPs, as well as guidelines for submitting a new PEP, are listed at
 http://www.python.org/dev/peps/.
 
@@ -168,26 +167,21 @@ See PEP 392 for release details: http://www.python.org/dev/peps/pep-0392/
 Copyright and License Information
 ---------------------------------
 
-Copyright (c) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010
-Python Software Foundation.
-All rights reserved.
+Copyright (c) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011
+Python Software Foundation.  All rights reserved.
 
-Copyright (c) 2000 BeOpen.com.
-All rights reserved.
+Copyright (c) 2000 BeOpen.com.  All rights reserved.
 
-Copyright (c) 1995-2001 Corporation for National Research Initiatives.
-All rights reserved.
+Copyright (c) 1995-2001 Corporation for National Research Initiatives.  All
+rights reserved.
 
-Copyright (c) 1991-1995 Stichting Mathematisch Centrum.
-All rights reserved.
+Copyright (c) 1991-1995 Stichting Mathematisch Centrum.  All rights reserved.
 
-See the file "LICENSE" for information on the history of this
-software, terms & conditions for usage, and a DISCLAIMER OF ALL
-WARRANTIES.
+See the file "LICENSE" for information on the history of this software, terms &
+conditions for usage, and a DISCLAIMER OF ALL WARRANTIES.
 
-This Python distribution contains *no* GNU General Public License
-(GPL) code, so it may be used in proprietary projects.  There are
-interfaces to some GNU code but these are entirely optional.
+This Python distribution contains *no* GNU General Public License (GPL) code, so
+it may be used in proprietary projects.  There are interfaces to some GNU code
+but these are entirely optional.
 
-All trademarks referenced herein are property of their respective
-holders.
+All trademarks referenced herein are property of their respective holders.