]> granicus.if.org Git - python/commitdiff
#11845: Merge with 3.2.
authorEzio Melotti <ezio.melotti@gmail.com>
Fri, 15 Apr 2011 05:19:32 +0000 (08:19 +0300)
committerEzio Melotti <ezio.melotti@gmail.com>
Fri, 15 Apr 2011 05:19:32 +0000 (08:19 +0300)
1  2 
Misc/NEWS

diff --cc Misc/NEWS
index bf75d8b6dcd27ffa758741106e6e4de93fc0efff,8043c8bd9e6b5899f4b69cd79f1c748c508960f3..553adcd8e82c481f0f2c3dfac225e55fdd61fa40
+++ b/Misc/NEWS
@@@ -10,11 -10,9 +10,14 @@@ What's New in Python 3.3 Alpha 1
  Core and Builtins
  -----------------
  
+ - Issue #11845: Fix typo in rangeobject.c that caused a crash in
+   compute_slice_indices.  Patch by Daniel Urban.
 +- Issue #5673: Added a `timeout` keyword argument to subprocess.Popen.wait,
 +  subprocess.Popen.communicated, subprocess.call, subprocess.check_call, and
 +  subprocess.check_output.  If the blocking operation takes more than `timeout`
 +  seconds, the `subprocess.TimeoutExpired` exception is raised.
 +
  - Issue #11650: PyOS_StdioReadline() retries fgets() if it was interrupted
    (EINTR), for example if the program is stopped with CTRL+z on Mac OS X. Patch
    written by Charles-Francois Natali.