Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
bfd1edd1
Commit
bfd1edd1
authored
Jul 04, 2011
by
Georg Brandl
Browse files
Options
Browse Files
Download
Plain Diff
Merge 3.2.1 release clone changes into main 3.2 branch after 3.2.1rc2 release.
parents
e40b3aab
b1b25f0f
Changes
10
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
10 changed files
with
58 additions
and
43 deletions
+58
-43
.hgtags
.hgtags
+1
-0
Doc/Makefile
Doc/Makefile
+1
-1
Doc/library/curses.rst
Doc/library/curses.rst
+1
-1
Include/patchlevel.h
Include/patchlevel.h
+2
-2
Lib/distutils/__init__.py
Lib/distutils/__init__.py
+1
-1
Lib/idlelib/idlever.py
Lib/idlelib/idlever.py
+1
-1
Lib/pydoc_data/topics.py
Lib/pydoc_data/topics.py
+3
-3
Misc/NEWS
Misc/NEWS
+46
-32
Misc/RPM/python-3.2.spec
Misc/RPM/python-3.2.spec
+1
-1
README
README
+1
-1
No files found.
.hgtags
View file @
bfd1edd1
...
@@ -89,3 +89,4 @@ acf3e24dd0d0dfd1e20c907d696d3da965a8f56f v3.2rc2
...
@@ -89,3 +89,4 @@ acf3e24dd0d0dfd1e20c907d696d3da965a8f56f v3.2rc2
a222a015e28d8ae9af3899258dc6c15c3d40add0 v3.2
a222a015e28d8ae9af3899258dc6c15c3d40add0 v3.2
8ffac2337a3323323d02153ac919fd1483176652 v3.2.1b1
8ffac2337a3323323d02153ac919fd1483176652 v3.2.1b1
cfa9364997c7f2e67b9cbb45c3a5fa3bba4e4999 v3.2.1rc1
cfa9364997c7f2e67b9cbb45c3a5fa3bba4e4999 v3.2.1rc1
5df549718fb4841ff521fe051f6b54f290fad5d8 v3.2.1rc2
Doc/Makefile
View file @
bfd1edd1
...
@@ -113,7 +113,7 @@ doctest: build
...
@@ -113,7 +113,7 @@ doctest: build
pydoc-topics
:
BUILDER = pydoc-topics
pydoc-topics
:
BUILDER = pydoc-topics
pydoc-topics
:
build
pydoc-topics
:
build
@
echo
"Building finished; now copy build/pydoc-topics/topics.py"
\
@
echo
"Building finished; now copy build/pydoc-topics/topics.py"
\
"to Lib/pydoc_data/topics.py"
"to
../
Lib/pydoc_data/topics.py"
htmlview
:
html
htmlview
:
html
$(PYTHON)
-c
"import webbrowser; webbrowser.open('build/html/index.html')"
$(PYTHON)
-c
"import webbrowser; webbrowser.open('build/html/index.html')"
...
...
Doc/library/curses.rst
View file @
bfd1edd1
...
@@ -566,7 +566,7 @@ The module :mod:`curses` defines the following functions:
...
@@ -566,7 +566,7 @@ The module :mod:`curses` defines the following functions:
Instantiate the string *str* with the supplied parameters, where *str* should
Instantiate the string *str* with the supplied parameters, where *str* should
be a parameterized string obtained from the terminfo database. E.g.
be a parameterized string obtained from the terminfo database. E.g.
``tparm(tigetstr("cup"), 5, 3)`` could result in
x
``'\033[6;4H'``, the exact
``tparm(tigetstr("cup"), 5, 3)`` could result in ``'\033[6;4H'``, the exact
result depending on terminal type.
result depending on terminal type.
...
...
Include/patchlevel.h
View file @
bfd1edd1
...
@@ -20,10 +20,10 @@
...
@@ -20,10 +20,10 @@
#define PY_MINOR_VERSION 2
#define PY_MINOR_VERSION 2
#define PY_MICRO_VERSION 1
#define PY_MICRO_VERSION 1
#define PY_RELEASE_LEVEL PY_RELEASE_LEVEL_GAMMA
#define PY_RELEASE_LEVEL PY_RELEASE_LEVEL_GAMMA
#define PY_RELEASE_SERIAL
1
#define PY_RELEASE_SERIAL
2
/* Version as a string */
/* Version as a string */
#define PY_VERSION "3.2.1rc
1
+"
#define PY_VERSION "3.2.1rc
2
+"
/*--end constants--*/
/*--end constants--*/
/* Subversion Revision number of this file (not of the repository). Empty
/* Subversion Revision number of this file (not of the repository). Empty
...
...
Lib/distutils/__init__.py
View file @
bfd1edd1
...
@@ -15,5 +15,5 @@ __revision__ = "$Id$"
...
@@ -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.2.1rc
1
"
__version__
=
"3.2.1rc
2
"
#--end constants--
#--end constants--
Lib/idlelib/idlever.py
View file @
bfd1edd1
IDLE_VERSION
=
"3.2.1rc
1
"
IDLE_VERSION
=
"3.2.1rc
2
"
Lib/pydoc_data/topics.py
View file @
bfd1edd1
This diff is collapsed.
Click to expand it.
Misc/NEWS
View file @
bfd1edd1
...
@@ -47,16 +47,31 @@ Tests
...
@@ -47,16 +47,31 @@ Tests
in to the console windowserver (as may be the case under buildbot or ssh).
in to the console windowserver (as may be the case under buildbot or ssh).
What's New in Python 3.2.1?
===========================
*Release date: XXXX-XX-XX*
Core and Builtins
-----------------
Library
-------
- Issue #12467: warnings: fix a race condition if a warning is emitted at
shutdown, if globals()['__file__'] is None.
What's New in Python 3.2.1 release candidate 2?
What's New in Python 3.2.1 release candidate 2?
===============================================
===============================================
*Release date:
XX-XXX
-2011*
*Release date:
03-Jul
-2011*
Core and Builtins
Core and Builtins
-----------------
-----------------
- Issue #12291: You can now load multiple marshalled objects from a stream,
- Issue #12291: You can now load multiple marshalled objects from a stream,
with
with
other data interleaved between marshalled objects.
other data interleaved between marshalled objects.
- Issue #12084: os.stat on Windows now works properly with relative symbolic
- Issue #12084: os.stat on Windows now works properly with relative symbolic
links when called from any directory.
links when called from any directory.
...
@@ -65,30 +80,29 @@ Core and Builtins
...
@@ -65,30 +80,29 @@ Core and Builtins
the following case: sys.stdin.read() stopped with CTRL+d (end of file),
the following case: sys.stdin.read() stopped with CTRL+d (end of file),
raw_input() interrupted by CTRL+c.
raw_input() interrupted by CTRL+c.
- Issue #9670: Increase the default stack size for secondary threads on
- Issue #9670: Increase the default stack size for secondary threads on Mac OS X
Mac OS X and FreeBSD to reduce the chances of a crash instead of a
and FreeBSD to reduce the chances of a crash instead of a "maximum recursion
"maximum recursion depth" RuntimeError exception.
depth" RuntimeError exception (patch by Ronald Oussoren).
(patch by Ronald Oussoren)
Library
Library
-------
-------
- Issue #12147: Adjust the new-in-3.2 smtplib.send_message method for better
- Issue #12147: Adjust the new-in-3.2 smtplib.send_message method for better
conformance to the RFCs:
correctly handle Sender and Resent-
headers.
conformance to the RFCs:
correctly handle Sender and Resent
headers.
- Issue #12352: Fix a deadlock in multiprocessing.Heap when a block is freed by
- Issue #12352: Fix a deadlock in multiprocessing.Heap when a block is freed by
the garbage collector while the Heap lock is held.
the garbage collector while the Heap lock is held.
- Issue #12451: The XInclude default loader of xml.etree now decodes files from
- Issue #12451: The XInclude default loader of xml.etree now decodes files from
UTF-8 instead of the locale encoding if the encoding is not specified. It now
UTF-8 instead of the locale encoding if the encoding is not specified. It now
also opens XML files for the parser in binary mode instead of the text mode
also opens XML files for the parser in binary mode instead of the text mode
to
to
avoid encoding issues.
avoid encoding issues.
- Issue #12451: doctest.debug_script() doesn't create a temporary file
- Issue #12451: doctest.debug_script() doesn't create a temporary file
anymore
anymore
to avoid encoding issues.
to avoid encoding issues.
- Issue #12451: pydoc.synopsis() now reads the encoding cookie if available,
- Issue #12451: pydoc.synopsis() now reads the encoding cookie if available,
to
to
read the Python script from the right encoding.
read the Python script from the right encoding.
- Issue #12451: distutils now opens the setup script in binary mode to read the
- Issue #12451: distutils now opens the setup script in binary mode to read the
encoding cookie, instead of opening it in UTF-8.
encoding cookie, instead of opening it in UTF-8.
...
@@ -110,9 +124,9 @@ Library
...
@@ -110,9 +124,9 @@ Library
- Issue #12383: Fix subprocess module with env={}: don't copy the environment
- Issue #12383: Fix subprocess module with env={}: don't copy the environment
variables, start with an empty environment.
variables, start with an empty environment.
- Issue #11584: email.header.decode_header no longer fails if the header
- Issue #11584: email.header.decode_header no longer fails if the header
passed
passed to it is a Header object, and Header/make_header no longer fail
to it is a Header object, and Header/make_header no longer fail if given
if given
binary unknown-8bit input.
binary unknown-8bit input.
- Issue #11700: mailbox proxy object close methods can now be called multiple
- Issue #11700: mailbox proxy object close methods can now be called multiple
times without error.
times without error.
...
@@ -144,8 +158,8 @@ Library
...
@@ -144,8 +158,8 @@ Library
constructor has failed, e.g. because of an undeclared keyword argument. Patch
constructor has failed, e.g. because of an undeclared keyword argument. Patch
written by Oleg Oshmyan.
written by Oleg Oshmyan.
- Issue #985064: Make plistlib more resilient to faulty input plists.
- Issue #985064: Make plistlib more resilient to faulty input plists.
Patch by
Patch by
Mher Movsisyan.
Mher Movsisyan.
- Issue #12175: RawIOBase.readall() now returns None if read() returns None.
- Issue #12175: RawIOBase.readall() now returns None if read() returns None.
...
@@ -179,13 +193,13 @@ Build
...
@@ -179,13 +193,13 @@ Build
-----
-----
- Issue #8746: Correct faulty configure checks so that os.chflags() and
- Issue #8746: Correct faulty configure checks so that os.chflags() and
os.lchflags() are once again built on systems that support these
os.lchflags() are once again built on systems that support these
functions
functions (*BSD and OS X). Also add new stat file flags for OS X
(*BSD and OS X). Also add new stat file flags for OS X (UF_HIDDEN and
(UF_HIDDEN and
UF_COMPRESSED).
UF_COMPRESSED).
- Issue #11217: For 64-bit/32-bit Mac OS X universal framework builds,
- Issue #11217: For 64-bit/32-bit Mac OS X universal framework builds,
ensure
ensure "make install" creates symlinks in --prefix bin for the "-32"
"make install" creates symlinks in --prefix bin for the "-32" files in the
f
iles in the f
ramework bin directory like the installer does.
framework bin directory like the installer does.
Tests
Tests
-----
-----
...
@@ -196,15 +210,15 @@ Tests
...
@@ -196,15 +210,15 @@ Tests
the output and displays it on failure instead. regrtest -v doesn't print the
the output and displays it on failure instead. regrtest -v doesn't print the
error twice anymore if there is only one error.
error twice anymore if there is only one error.
- Issue #12141: Install a copy of template C module file so that
- Issue #12141: Install a copy of template C module file so that
test_build_ext
test_build_ext of test_distutils is no longer silently skipped when
of test_distutils is no longer silently skipped when run outside of a build
run outside of a build
directory.
directory.
- Issue #8746: Add additional tests for os.chflags() and os.lchflags().
- Issue #8746: Add additional tests for os.chflags() and os.lchflags().
Patch
Patch
by Garrett Cooper.
by Garrett Cooper.
- Issue #10736: Fix test_ttk test_widgets failures with Cocoa Tk 8.5.9
- Issue #10736: Fix test_ttk test_widgets failures with Cocoa Tk 8.5.9
on Mac
on Mac
OS X. (Patch by Ronald Oussoren)
OS X. (Patch by Ronald Oussoren)
- Issue #12057: Add tests for ISO 2022 codecs (iso2022_jp, iso2022_jp_2,
- Issue #12057: Add tests for ISO 2022 codecs (iso2022_jp, iso2022_jp_2,
iso2022_kr).
iso2022_kr).
...
...
Misc/RPM/python-3.2.spec
View file @
bfd1edd1
...
@@ -39,7 +39,7 @@
...
@@ -39,7 +39,7 @@
%define name python
%define name python
#--start constants--
#--start constants--
%define version 3.2.1rc
1
%define version 3.2.1rc
2
%define libvers 3.2
%define libvers 3.2
#--end constants--
#--end constants--
%define release 1pydotorg
%define release 1pydotorg
...
...
README
View file @
bfd1edd1
This is Python version 3.2.1 release candidate
1
This is Python version 3.2.1 release candidate
2
================================================
================================================
Copyright (c) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011
Copyright (c) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment