summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS.d
diff options
context:
space:
mode:
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2020-11-29 18:43:36 (GMT)
committerGitHub <noreply@github.com>2020-11-29 18:43:36 (GMT)
commitb1c48e513624641d6472262c33d09624170ea1f5 (patch)
tree0da688439a2f92d56a393d224efd65aa83b426b2 /Misc/NEWS.d
parentc3009a5818112b5fb8867d786ce33e0e9489f4e0 (diff)
downloadcpython-b1c48e513624641d6472262c33d09624170ea1f5.zip
cpython-b1c48e513624641d6472262c33d09624170ea1f5.tar.gz
cpython-b1c48e513624641d6472262c33d09624170ea1f5.tar.bz2
bpo-42406: Fix whichmodule() with multiprocessing (GH-23403)
* bpo-42406: Fix whichmodule() with multiprocessing Signed-off-by: Renato L. de F. Cunha <renatoc@br.ibm.com> Co-authored-by: Gregory P. Smith <greg@krypto.org> (cherry picked from commit 86684319d3dad8e1a7b0559727a48e0bc50afb01) Co-authored-by: Renato Cunha <renatocunha@acm.org>
Diffstat (limited to 'Misc/NEWS.d')
-rw-r--r--Misc/NEWS.d/next/Library/2020-11-19-10-44-41.bpo-42406.r9rNCj.rst3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2020-11-19-10-44-41.bpo-42406.r9rNCj.rst b/Misc/NEWS.d/next/Library/2020-11-19-10-44-41.bpo-42406.r9rNCj.rst
new file mode 100644
index 0000000..c157df1
--- /dev/null
+++ b/Misc/NEWS.d/next/Library/2020-11-19-10-44-41.bpo-42406.r9rNCj.rst
@@ -0,0 +1,3 @@
+We fixed an issue in `pickle.whichmodule` in which importing
+`multiprocessing` could change the how pickle identifies which module an
+object belongs to, potentially breaking the unpickling of those objects.