]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Merge from 3.2
authorAndrew Svetlov <andrew.svetlov@gmail.com>
Thu, 5 Apr 2012 14:04:28 +0000 (17:04 +0300)
committerAndrew Svetlov <andrew.svetlov@gmail.com>
Thu, 5 Apr 2012 14:04:28 +0000 (17:04 +0300)
1  2 
Misc/NEWS

diff --cc Misc/NEWS
index 995900fcd99c0e560b368460424d589fbcb2c488,4af242a0b48ef297eebd4fb88cf04c35d69be24b..e2e0a2d5fc5c9b6cad0e2061188905ed52391968
+++ b/Misc/NEWS
@@@ -16,35 -16,6 +16,38 @@@ Core and Builtin
  - Issue #13019: Fix potential reference leaks in bytearray.extend().  Patch
    by Suman Saha.
  
 +Library
 +-------
 +
++- Issue #14496: Fix wrong name in idlelib/tabbedpages.py.
++  Patch by Popa Claudiu.
++
 +- Issue #3033: Add displayof parameter to tkinter font. Patch by Guilherme Polo.
 +
 +- Issue #14482: Raise a ValueError, not a NameError, when trying to create
 +  a multiprocessing Client or Listener with an AF_UNIX type address under
 +  Windows.  Patch by Popa Claudiu.
 +
 +- Issue #802310: Generate always unique tkinter font names if not directly passed.
 +
 +- Issue #14151: Raise a ValueError, not a NameError, when trying to create
 +  a multiprocessing Client or Listener with an AF_PIPE type address under
 +  non-Windows platforms.  Patch by Popa Claudiu.
 +
 +- Issue #14493: Use gvfs-open or xdg-open in webbrowser.
 +
 +
 +What's New in Python 3.3.0 Alpha 2?
 +===================================
 +
 +*Release date: 01-Apr-2012*
 +
 +Core and Builtins
 +-----------------
 +
 +- Issue #1683368: object.__new__ and object.__init__ raise a TypeError if they
 +  are passed arguments and their complementary method is not overridden.
 +
  - Issue #14378: Fix compiling ast.ImportFrom nodes with a "__future__" string as
    the module name that was not interned.