mirror of
https://github.com/python/cpython.git
synced 2025-11-18 18:31:56 +00:00
Bump to 3.2b1.
This commit is contained in:
parent
46402378ca
commit
41ea8ae667
6 changed files with 23 additions and 24 deletions
|
|
@ -19,11 +19,11 @@
|
||||||
#define PY_MAJOR_VERSION 3
|
#define PY_MAJOR_VERSION 3
|
||||||
#define PY_MINOR_VERSION 2
|
#define PY_MINOR_VERSION 2
|
||||||
#define PY_MICRO_VERSION 0
|
#define PY_MICRO_VERSION 0
|
||||||
#define PY_RELEASE_LEVEL PY_RELEASE_LEVEL_ALPHA
|
#define PY_RELEASE_LEVEL PY_RELEASE_LEVEL_BETA
|
||||||
#define PY_RELEASE_SERIAL 4
|
#define PY_RELEASE_SERIAL 1
|
||||||
|
|
||||||
/* Version as a string */
|
/* Version as a string */
|
||||||
#define PY_VERSION "3.2a4+"
|
#define PY_VERSION "3.2b1"
|
||||||
/*--end constants--*/
|
/*--end constants--*/
|
||||||
|
|
||||||
/* Subversion Revision number of this file (not of the repository) */
|
/* Subversion Revision number of this file (not of the repository) */
|
||||||
|
|
|
||||||
|
|
@ -15,5 +15,5 @@ __revision__ = "$Id$"
|
||||||
# Updated automatically by the Python release process.
|
# Updated automatically by the Python release process.
|
||||||
#
|
#
|
||||||
#--start constants--
|
#--start constants--
|
||||||
__version__ = "3.2a4"
|
__version__ = "3.2b1"
|
||||||
#--end constants--
|
#--end constants--
|
||||||
|
|
|
||||||
|
|
@ -1 +1 @@
|
||||||
IDLE_VERSION = "3.2a4"
|
IDLE_VERSION = "3.2b1"
|
||||||
|
|
|
||||||
31
Misc/NEWS
31
Misc/NEWS
|
|
@ -5,26 +5,25 @@ Python News
|
||||||
What's New in Python 3.2 Beta 1?
|
What's New in Python 3.2 Beta 1?
|
||||||
================================
|
================================
|
||||||
|
|
||||||
*Release date: XX-Dec-2010*
|
*Release date: 05-Dec-2010*
|
||||||
|
|
||||||
Core and Builtins
|
Core and Builtins
|
||||||
-----------------
|
-----------------
|
||||||
|
|
||||||
- Issue #10596: Fix float.__mod__ to have the same behaviour as
|
- Issue #10596: Fix float.__mod__ to have the same behaviour as float.__divmod__
|
||||||
float.__divmod__ with respect to signed zeros. -4.0 % 4.0 should be
|
with respect to signed zeros. -4.0 % 4.0 should be 0.0, not -0.0.
|
||||||
0.0, not -0.0.
|
|
||||||
|
|
||||||
- Issue #1772833: Add the -q command-line option to suppress copyright
|
- Issue #1772833: Add the -q command-line option to suppress copyright and
|
||||||
and version output in interactive mode.
|
version output in interactive mode.
|
||||||
|
|
||||||
- Provide an *optimize* parameter in the built-in compile() function.
|
- Provide an *optimize* parameter in the built-in compile() function.
|
||||||
|
|
||||||
- Fixed several corner case issues on os.stat/os.lstat related to reparse
|
- Fixed several corner case issues on Windows in os.stat/os.lstat related to
|
||||||
points. (Windows)
|
reparse points.
|
||||||
|
|
||||||
- PEP 384 (Defining a Stable ABI) is implemented.
|
- 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.
|
- Issue #9915: Speed up sorting with a key.
|
||||||
|
|
||||||
|
|
@ -56,8 +55,8 @@ Library
|
||||||
|
|
||||||
- Add the "display" and "undisplay" pdb commands.
|
- Add the "display" and "undisplay" pdb commands.
|
||||||
|
|
||||||
- Issue #7245: Add a SIGINT handler in pdb that allows to break a program
|
- Issue #7245: Add a SIGINT handler in pdb that allows to break a program again
|
||||||
again after a "continue" command.
|
after a "continue" command.
|
||||||
|
|
||||||
- Add the "interact" pdb command.
|
- Add the "interact" pdb command.
|
||||||
|
|
||||||
|
|
@ -260,8 +259,8 @@ C-API
|
||||||
-----
|
-----
|
||||||
|
|
||||||
- Issue #10557: Added a new API function, PyUnicode_TransformDecimalToASCII(),
|
- Issue #10557: Added a new API function, PyUnicode_TransformDecimalToASCII(),
|
||||||
which transforms non-ASCII decimal digits in a Unicode string to their
|
which transforms non-ASCII decimal digits in a Unicode string to their ASCII
|
||||||
ASCII equivalents.
|
equivalents.
|
||||||
|
|
||||||
- Issue #9518: Extend the PyModuleDef_HEAD_INIT macro to explicitly
|
- Issue #9518: Extend the PyModuleDef_HEAD_INIT macro to explicitly
|
||||||
zero-initialize all fields, fixing compiler warnings seen when building
|
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
|
- 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` can be used to run the test suite as well as `python -m
|
||||||
`python -m test.regrtest`.
|
test.regrtest`.
|
||||||
|
|
||||||
- Do not fail test_socket when the IP address of the local hostname cannot be
|
- Do not fail test_socket when the IP address of the local hostname cannot be
|
||||||
looked up.
|
looked up.
|
||||||
|
|
|
||||||
|
|
@ -39,7 +39,7 @@
|
||||||
|
|
||||||
%define name python
|
%define name python
|
||||||
#--start constants--
|
#--start constants--
|
||||||
%define version 3.2a4
|
%define version 3.2b1
|
||||||
%define libvers 3.2
|
%define libvers 3.2
|
||||||
#--end constants--
|
#--end constants--
|
||||||
%define release 1pydotorg
|
%define release 1pydotorg
|
||||||
|
|
|
||||||
4
README
4
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
|
Copyright (c) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010
|
||||||
Python Software Foundation.
|
Python Software Foundation.
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue