diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2014-10-04 20:17:26 (GMT) |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2014-10-04 20:17:26 (GMT) |
commit | 5f6a7556bf3071cc1b1ad409cc3ae41379994df1 (patch) | |
tree | 10603bfd3e99b7101fa52acb75f83d61dff5a0e0 /Misc | |
parent | 190517551b183c6e3cf2d333e2ccdcdf3f1d3655 (diff) | |
parent | e1618491adc5c0ef214c25d4e3b882e8586a2fee (diff) | |
download | cpython-5f6a7556bf3071cc1b1ad409cc3ae41379994df1.zip cpython-5f6a7556bf3071cc1b1ad409cc3ae41379994df1.tar.gz cpython-5f6a7556bf3071cc1b1ad409cc3ae41379994df1.tar.bz2 |
Issue #21905: Avoid RuntimeError in pickle.whichmodule() when sys.modules is mutated while iterating.
Patch by Olivier Grisel.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/ACKS | 1 | ||||
-rw-r--r-- | Misc/NEWS | 3 |
2 files changed, 4 insertions, 0 deletions
@@ -498,6 +498,7 @@ Eddy De Greef Grant Griffin Andrea Griffini Duncan Grisby +Olivier Grisel Fabian Groffen Eric Groo Dag Gruneau @@ -162,6 +162,9 @@ Core and Builtins Library ------- +- Issue #21905: Avoid RuntimeError in pickle.whichmodule() when sys.modules + is mutated while iterating. Patch by Olivier Grisel. + - Issue #11271: concurrent.futures.Executor.map() now takes a *chunksize* argument to allow batching of tasks in child processes and improve performance of ProcessPoolExecutor. Patch by Dan O'Reilly. |