]> granicus.if.org Git - python/commitdiff
Merge
authorMichael Foord <michael@voidspace.org.uk>
Tue, 13 Mar 2012 07:14:19 +0000 (00:14 -0700)
committerMichael Foord <michael@voidspace.org.uk>
Tue, 13 Mar 2012 07:14:19 +0000 (00:14 -0700)
1  2 
Misc/NEWS

diff --cc Misc/NEWS
index dab53d337fa3c31cb374cb26966f91c536c65a66,93b5a74cef7cc56f34c50dbc4a725829073cf0c4..c07e555065ac1e3955e2a9b3bc46b14d4d0ca12c
+++ b/Misc/NEWS
@@@ -24,35 -22,34 +24,37 @@@ Core and Builtin
  Library
  -------
  
 -- Issue #14252: Fix subprocess.Popen.terminate() to not raise an error under
 -  Windows when the child process has already exited.
+ - Issue #10543: Fix unittest test discovery with Jython bytecode files.
 +- Issue #1178863: Separate initialisation from setting when initializing
 +  Tkinter.Variables; harmonize exceptions to ValueError; only delete variables
 +  that have not been deleted; assert that variable names are strings.
  
 -- Issue #14195: An issue that caused weakref.WeakSet instances to incorrectly
 -  return True for a WeakSet instance 'a' in both 'a < a' and 'a > a' has been
 -  fixed.
 +- Issue #14104: Implement time.monotonic() on Mac OS X, patch written by
 +  Nicholas Riley.
  
 -- Issue #14177: marshal.loads() now raises TypeError when given an unicode
 -  string.  Patch by Guilherme Gonçalves.
 +- Issue #13394: the aifc module now uses warnings.warn() to signal warnings.
  
 -- Issue #14159: Fix the len() of weak containers (WeakSet, WeakKeyDictionary,
 -  WeakValueDictionary) to return a better approximation when some objects
 -  are dead or dying.  Moreover, the implementation is now O(1) rather than
 -  O(n).
 +- Issue #14252: Fix subprocess.Popen.terminate() to not raise an error under
 +  Windows when the child process has already exited.
  
 -- Issue #13125: Silence spurious test_lib2to3 output when in non-verbose mode.
 -  Patch by Mikhail Novikov.
 +- Issue #14223: curses.addch() is no more limited to the range 0-255 when the
 +  Python curses is not linked to libncursesw. It was a regression introduced
 +  in Python 3.3a1.
  
 -- Issue #13447: Add a test file to host regression tests for bugs in the
 -  scripts found in the Tools directory.
 +- Issue #14168: Check for presence of Element._attrs in minidom before
 +  accessing it.
  
 -- Issue #6884: Fix long-standing bugs with MANIFEST.in parsing in distutils
 -  on Windows.
 +- Issue #12328: Fix multiprocessing's use of overlapped I/O on Windows.
 +  Also, add a multiprocessing.connection.wait(rlist, timeout=None) function
 +  for polling multiple objects at once.  Patch by sbt.
  
 -- Issue #8033: sqlite3: Fix 64-bit integer handling in user functions
 -  on 32-bit architectures. Initial patch by Philippe Devalkeneer.
 +- Issue #14007: Accept incomplete TreeBuilder objects (missing start, end,
 +  data or close method) for the Python implementation as well.
 +  Drop the no-op TreeBuilder().xml() method from the C implementation.
 +
 +- Issue #14210: pdb now has tab-completion not only for command names, but
 +  also for their arguments, wherever possible.
  
  Extension Modules
  -----------------