Bump to 3.2b1.
authorGeorg Brandl <georg@python.org>
Sat, 4 Dec 2010 19:09:24 +0000 (19:09 +0000)
committerGeorg Brandl <georg@python.org>
Sat, 4 Dec 2010 19:09:24 +0000 (19:09 +0000)
Include/patchlevel.h
Lib/distutils/__init__.py
Lib/idlelib/idlever.py
Misc/NEWS
Misc/RPM/python-3.2.spec
README

index 2bda30dec3921136f31e15326c095a09d5ca3f03..5dc9596cd0efd4761d5f63d84fbb22c7d51eeced 100644 (file)
 #define PY_MAJOR_VERSION       3
 #define PY_MINOR_VERSION       2
 #define PY_MICRO_VERSION       0
-#define PY_RELEASE_LEVEL       PY_RELEASE_LEVEL_ALPHA
-#define PY_RELEASE_SERIAL      4
+#define PY_RELEASE_LEVEL       PY_RELEASE_LEVEL_BETA
+#define PY_RELEASE_SERIAL      1
 
 /* Version as a string */
-#define PY_VERSION             "3.2a4+"
+#define PY_VERSION             "3.2b1"
 /*--end constants--*/
 
 /* Subversion Revision number of this file (not of the repository) */
index bae33b5530ad7eec5d410ff5a08fc799ba305a9f..8b85f35f9ded950d6c8ca31a7b786cf874da5386 100644 (file)
@@ -15,5 +15,5 @@ __revision__ = "$Id$"
 # Updated automatically by the Python release process.
 #
 #--start constants--
-__version__ = "3.2a4"
+__version__ = "3.2b1"
 #--end constants--
index 812e071ec939dbcfd40eddfe607c39f95f18c7e2..65283a25eea01236943a2256a9bd2837d44c953b 100644 (file)
@@ -1 +1 @@
-IDLE_VERSION = "3.2a4"
+IDLE_VERSION = "3.2b1"
index 1e8108efe49ae3a60fa7e0cd130ed3219ee80506..05d1f12e903a092100d68f01dea21945ba6c83a1 100644 (file)
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -5,26 +5,25 @@ Python News
 What's New in Python 3.2 Beta 1?
 ================================
 
-*Release date: XX-Dec-2010*
+*Release date: 05-Dec-2010*
 
 Core and Builtins
 -----------------
 
-- Issue #10596: Fix float.__mod__ to have the same behaviour as
-  float.__divmod__ with respect to signed zeros.  -4.0 % 4.0 should be
-  0.0, not -0.0.
+- Issue #10596: Fix float.__mod__ to have the same behaviour as float.__divmod__
+  with respect to signed zeros.  -4.0 % 4.0 should be 0.0, not -0.0.
 
-- Issue #1772833: Add the -q command-line option to suppress copyright
-  and version output in interactive mode.
+- Issue #1772833: Add the -q command-line option to suppress copyright and
+  version output in interactive mode.
 
 - Provide an *optimize* parameter in the built-in compile() function.
 
-- Fixed several corner case issues on os.stat/os.lstat related to reparse
-  points. (Windows)
+- Fixed several corner case issues on Windows in os.stat/os.lstat related to
+  reparse points.
 
 - PEP 384 (Defining a Stable ABI) is implemented.
 
-- Issue #2690: Range objects support negative indices and slicing
+- Issue #2690: Range objects support negative indices and slicing.
 
 - Issue #9915: Speed up sorting with a key.
 
@@ -56,8 +55,8 @@ Library
 
 - Add the "display" and "undisplay" pdb commands.
 
-- Issue #7245: Add a SIGINT handler in pdb that allows to break a program
-  again after a "continue" command.
+- Issue #7245: Add a SIGINT handler in pdb that allows to break a program again
+  after a "continue" command.
 
 - Add the "interact" pdb command.
 
@@ -260,8 +259,8 @@ C-API
 -----
 
 - Issue #10557: Added a new API function, PyUnicode_TransformDecimalToASCII(),
-  which transforms non-ASCII decimal digits in a Unicode string to their
-  ASCII equivalents. 
+  which transforms non-ASCII decimal digits in a Unicode string to their ASCII
+  equivalents.
 
 - Issue #9518: Extend the PyModuleDef_HEAD_INIT macro to explicitly
   zero-initialize all fields, fixing compiler warnings seen when building
@@ -279,10 +278,10 @@ Tests
 -----
 
 - regrtest.py once again ensures the test directory is removed from sys.path
-  when it is invoked directly as the __main__ module
+  when it is invoked directly as the __main__ module.
 
-- `python -m test` can be used to run the test suite as well as
-  `python -m test.regrtest`.
+- `python -m test` can be used to run the test suite as well as `python -m
+  test.regrtest`.
 
 - Do not fail test_socket when the IP address of the local hostname cannot be
   looked up.
index 9a0c0ea0f6e22fe2e8f61cd28ab8aeeadbf60ba0..573a5e0403bb1597ec58dbec7d01ddbd2f3edea1 100644 (file)
@@ -39,7 +39,7 @@
 
 %define name python
 #--start constants--
-%define version 3.2a4
+%define version 3.2b1
 %define libvers 3.2
 #--end constants--
 %define release 1pydotorg
diff --git a/README b/README
index 6ce827779c7e0eb8a508994a519cba7b4277ee42..af52c9f0e5bff80c929385b778120cffb5313b5e 100644 (file)
--- a/README
+++ b/README
@@ -1,5 +1,5 @@
-This is Python version 3.2 alpha 4
-==================================
+This is Python version 3.2 beta 1
+=================================
 
 Copyright (c) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010
 Python Software Foundation.