diff options
author | Victor Stinner <victor.stinner@gmail.com> | 2017-08-21 16:12:58 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-08-21 16:12:58 (GMT) |
commit | 84524454d0ba77d299741c47bd0f5841ac3f66ce (patch) | |
tree | e6ef68ff4bde65b33d521d7c910524527fd4a6c7 /Misc | |
parent | f432a3234f9f2ee09bd40be03e06bf72865ee375 (diff) | |
download | cpython-84524454d0ba77d299741c47bd0f5841ac3f66ce.zip cpython-84524454d0ba77d299741c47bd0f5841ac3f66ce.tar.gz cpython-84524454d0ba77d299741c47bd0f5841ac3f66ce.tar.bz2 |
bpo-31247: xmlrpc.server: break reference cycle (#3166)
xmlrpc.server now explicitly breaks reference cycles when using
sys.exc_info() in code handling exceptions.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Library/2017-08-21-17-50-27.bpo-31247.8S3zJp.rst | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2017-08-21-17-50-27.bpo-31247.8S3zJp.rst b/Misc/NEWS.d/next/Library/2017-08-21-17-50-27.bpo-31247.8S3zJp.rst new file mode 100644 index 0000000..6879384 --- /dev/null +++ b/Misc/NEWS.d/next/Library/2017-08-21-17-50-27.bpo-31247.8S3zJp.rst @@ -0,0 +1,2 @@ +xmlrpc.server now explicitly breaks reference cycles when using +sys.exc_info() in code handling exceptions. |