]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Merge 3.2.1 release clone changes into main 3.2 branch after 3.2.1rc2 release.
authorGeorg Brandl <georg@python.org>
Mon, 4 Jul 2011 17:55:22 +0000 (19:55 +0200)
committerGeorg Brandl <georg@python.org>
Mon, 4 Jul 2011 17:55:22 +0000 (19:55 +0200)
1  2 
Misc/NEWS

diff --cc Misc/NEWS
index eb9b636a3dd7a942e23e6d905953f9e5d42c54e2,1518bd1fb115f3211aebc43224ea29afc0de7eed..67485b3f6d92f97db85093fac02e252e4ba4434f
+++ b/Misc/NEWS
@@@ -2,51 -2,21 +2,66 @@@
  Python News
  +++++++++++
  
 +What's New in Python 3.2.2?
 +===========================
 +
 +*Release date: XX-XX-2011*
 +
 +Core and Builtins
 +-----------------
 +
 +- When a generator yields, do not retain the caller's exception state on the
 +  generator.
 +
 +- Issue #12475: Prevent generators from leaking their exception state into the
 +  caller's frame as they return for the last time.
 +
 +Library
 +-------
 +
 +- Issue #12467: warnings: fix a race condition if a warning is emitted at
 +  shutdown, if globals()['__file__'] is None.
 +
 +- Issue #12451: pydoc: importfile() now opens the Python script in binary mode,
 +  instead of text mode using the locale encoding, to avoid encoding issues.
 +
 +- Issue #12451: runpy: run_path() now opens the Python script in binary mode,
 +  instead of text mode using the locale encoding, to support other encodings
 +  than UTF-8 (scripts using the coding cookie).
 +
 +- Issue #12451: xml.dom.pulldom: parse() now opens files in binary mode instead
 +  of the text mode (using the locale encoding) to avoid encoding issues.
 +
 +C-API
 +-----
 +
 +Tests
 +-----
 +
 +- Issue #12469: Run "wakeup" signal tests in subprocess to run the test in a
 +  fresh process with only one thread and to not change signal handling of the
 +  parent process.
 +
 +- Issue #8716: Avoid crashes caused by Aqua Tk on OSX when attempting to run
 +  test_tk or test_ttk_guionly under a username that is not currently logged
 +  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?
  ===============================================