summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorJesse Noller <jnoller@gmail.com>2009-03-30 16:11:16 (GMT)
committerJesse Noller <jnoller@gmail.com>2009-03-30 16:11:16 (GMT)
commite6bab480acb17ba62d948f22a29cdd08289e7986 (patch)
treebf5ce0dccc380506d18d30b989172987f192fd86 /Misc
parent783fa44f2cba927dd7c1e2b03866a01a5dd82990 (diff)
downloadcpython-e6bab480acb17ba62d948f22a29cdd08289e7986.zip
cpython-e6bab480acb17ba62d948f22a29cdd08289e7986.tar.gz
cpython-e6bab480acb17ba62d948f22a29cdd08289e7986.tar.bz2
Merge 68768 to maint
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS7
1 files changed, 7 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 40322d2..aca1cc5 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -150,6 +150,13 @@ Library
- Issue #5203: Fixed ctypes segfaults when passing a unicode string to a
function without argtypes (only occurs if HAVE_USABLE_WCHAR_T is false).
+- 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.
+
- Issue #3386: distutils.sysconfig.get_python_lib prefix argument was ignored
under NT and OS2. Patch by Philip Jenvey.