From: Georg Brandl Date: Mon, 2 Apr 2012 05:52:29 +0000 (+0200) Subject: Merge. X-Git-Tag: v3.3.0a3~336^2 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=f4228b0e6a3220452ca386ff3f83c48dc7daf870;p=python Merge. --- f4228b0e6a3220452ca386ff3f83c48dc7daf870 diff --cc Misc/NEWS index f3d874e0d4,fa3660c64b..b38f104a81 --- a/Misc/NEWS +++ b/Misc/NEWS @@@ -10,18 -10,9 +10,25 @@@ What's New in Python 3.3.0 Alpha 3 Core and Builtins ----------------- + - Issue #13019: Fix potential reference leaks in bytearray.extend(). Patch + by Suman Saha. + +Library +------- + ++- 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. ++ + +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.