summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorJesse Noller <jnoller@gmail.com>2009-01-19 16:23:53 (GMT)
committerJesse Noller <jnoller@gmail.com>2009-01-19 16:23:53 (GMT)
commit6214edd1bbf8aece44215b6a47fb2be4df73d42e (patch)
tree29c89e73cfb551883794d0c9922dd566b3864b60 /Misc
parent7aedf11e57bf38e992ebe6c0ae86167ae9b79412 (diff)
downloadcpython-6214edd1bbf8aece44215b6a47fb2be4df73d42e.zip
cpython-6214edd1bbf8aece44215b6a47fb2be4df73d42e.tar.gz
cpython-6214edd1bbf8aece44215b6a47fb2be4df73d42e.tar.bz2
merge r68768 to py3k
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 1eb8559..50e4702 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -143,6 +143,10 @@ Library
- Issue #4959: inspect.formatargspec now works for keyword only arguments
without defaults.
+- Issue #3321: _multiprocessing.Connection() doesn't check handle; added checks
+ for *nix machines for negative handles and large int handles. Without this check
+ it is possible to segfault the interpreter.
+
- Issue #4449: AssertionError in mp_benchmarks.py, caused by an underlying issue
in sharedctypes.py.