summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorVictor Stinner <vstinner@redhat.com>2019-07-03 09:12:27 (GMT)
committerGitHub <noreply@github.com>2019-07-03 09:12:27 (GMT)
commit74c9dd57771f4f061ee83b069c8e7b37de41246b (patch)
tree242a627f7b7bf36fd594c7f10b546b0a1f8de51a /Misc
parent684cb47fffb7af3ac50cb077f6d2a095c9ce20b4 (diff)
downloadcpython-74c9dd57771f4f061ee83b069c8e7b37de41246b.zip
cpython-74c9dd57771f4f061ee83b069c8e7b37de41246b.tar.gz
cpython-74c9dd57771f4f061ee83b069c8e7b37de41246b.tar.bz2
bpo-37421: Fix test_distutils.test_build_ext() (GH-14564)
test_distutils.test_build_ext() is now able to remove the temporary directory on Windows: don't import the newly built C extension ("xx") in the current process, but test it in a separated process.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Tests/2019-07-03-00-05-28.bpo-37421.ORGRSG.rst3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Tests/2019-07-03-00-05-28.bpo-37421.ORGRSG.rst b/Misc/NEWS.d/next/Tests/2019-07-03-00-05-28.bpo-37421.ORGRSG.rst
new file mode 100644
index 0000000..8610509
--- /dev/null
+++ b/Misc/NEWS.d/next/Tests/2019-07-03-00-05-28.bpo-37421.ORGRSG.rst
@@ -0,0 +1,3 @@
+test_distutils.test_build_ext() is now able to remove the temporary
+directory on Windows: don't import the newly built C extension ("xx") in the
+current process, but test it in a separated process.