summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorBrett Cannon <brett@python.org>2021-03-30 15:43:03 (GMT)
committerGitHub <noreply@github.com>2021-03-30 15:43:03 (GMT)
commita7ff6df60c05e1b69fca743573b1e118bebf121d (patch)
tree7dae896ba674245645b5ca46c02cc387a43d35a0 /Misc
parentcf35e05f89bb008d6f4553f9875e0fe87fc02406 (diff)
downloadcpython-a7ff6df60c05e1b69fca743573b1e118bebf121d.zip
cpython-a7ff6df60c05e1b69fca743573b1e118bebf121d.tar.gz
cpython-a7ff6df60c05e1b69fca743573b1e118bebf121d.tar.bz2
bpo-42134: Raise ImportWarning when calling find_module() in the import system (GH-25044)
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Core and Builtins/2021-03-26-17-30-19.bpo-42134.G4Sjxg.rst1
1 files changed, 1 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Core and Builtins/2021-03-26-17-30-19.bpo-42134.G4Sjxg.rst b/Misc/NEWS.d/next/Core and Builtins/2021-03-26-17-30-19.bpo-42134.G4Sjxg.rst
new file mode 100644
index 0000000..72d13e3
--- /dev/null
+++ b/Misc/NEWS.d/next/Core and Builtins/2021-03-26-17-30-19.bpo-42134.G4Sjxg.rst
@@ -0,0 +1 @@
+Calls to find_module() by the import system now raise ImportWarning.