summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorJesse Noller <jnoller@gmail.com>2008-07-16 14:32:36 (GMT)
committerJesse Noller <jnoller@gmail.com>2008-07-16 14:32:36 (GMT)
commit13e9d582fd55c3f680cbe9d3d4c219722a484d92 (patch)
tree8fd06a37d7646bdb48d3699ac38d3c35d1a8857c /Misc
parenta6c5dc07f46c21f3fab81ce44321239378c09548 (diff)
downloadcpython-13e9d582fd55c3f680cbe9d3d4c219722a484d92.zip
cpython-13e9d582fd55c3f680cbe9d3d4c219722a484d92.tar.gz
cpython-13e9d582fd55c3f680cbe9d3d4c219722a484d92.tar.bz2
Apply Amaury's patch to multiprocessing for issue 3125, removes the copy_reg and replaces it with ForkingPickler.register(), which should resolve the conflict with the global registry/ctypes
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS5
1 files changed, 5 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 4d98270..90e42c7 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -63,6 +63,11 @@ Core and Builtins
Library
-------
+- Issue #3125: Remove copy_reg in multiprocessing and replace it with
+ ForkingPickler.register() to resolve conflict with ctypes.
+
+- Issue #3090: Fixed ARCHFLAGS parsing on OS/X
+
- Issue #3313: Fixed a crash when a failed dlopen() call does not set
a valid dlerror() message.