summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorVictor Stinner <vstinner@redhat.com>2019-04-08 23:36:34 (GMT)
committerGitHub <noreply@github.com>2019-04-08 23:36:34 (GMT)
commit79b5d29041bd85ea3baa050b3fa2481344ea35c9 (patch)
tree31c54c1e2fd3d7256d45bcde9258ef5e96115aa5 /Misc
parenteb7e29f2a9d075accc1ab3faf3612ac44f5e2183 (diff)
downloadcpython-79b5d29041bd85ea3baa050b3fa2481344ea35c9.zip
cpython-79b5d29041bd85ea3baa050b3fa2481344ea35c9.tar.gz
cpython-79b5d29041bd85ea3baa050b3fa2481344ea35c9.tar.bz2
bpo-36565: Fix libregrtest for Python without builtin _abc (GH-12733)
Fix reference hunting (``python3 -m test -R 3:3``) when Python has no built-in abc module: fix _get_dump() reimplementation of libregrtest.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Tests/2019-04-08-19-01-21.bpo-36565.2bxgtU.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Tests/2019-04-08-19-01-21.bpo-36565.2bxgtU.rst b/Misc/NEWS.d/next/Tests/2019-04-08-19-01-21.bpo-36565.2bxgtU.rst
new file mode 100644
index 0000000..8a14d08
--- /dev/null
+++ b/Misc/NEWS.d/next/Tests/2019-04-08-19-01-21.bpo-36565.2bxgtU.rst
@@ -0,0 +1,2 @@
+Fix reference hunting (``python3 -m test -R 3:3``) when Python has no
+built-in abc module.