summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@haypocalc.com>2011-04-09 13:55:44 (GMT)
committerVictor Stinner <victor.stinner@haypocalc.com>2011-04-09 13:55:44 (GMT)
commit52c950f229199fa14bd75e1709183d0b08e90182 (patch)
tree214bcd32c43fc180d599fb4e0a686a0070cee208 /Misc
parente1292a25d8a063dcc97111cd2b0239dc1aef5aa2 (diff)
downloadcpython-52c950f229199fa14bd75e1709183d0b08e90182.zip
cpython-52c950f229199fa14bd75e1709183d0b08e90182.tar.gz
cpython-52c950f229199fa14bd75e1709183d0b08e90182.tar.bz2
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.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS4
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 2d1327c..895e50d 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -10,6 +10,10 @@ What's New in Python 3.1.4?
Core and Builtins
-----------------
+- 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.
+
- Issue #8651: PyArg_Parse*() functions raise an OverflowError if the file
doesn't have PY_SSIZE_T_CLEAN define and the size doesn't fit in an int
(length bigger than 2^31-1 bytes).