summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorPablo Galindo <Pablogsal@gmail.com>2018-04-25 02:22:28 (GMT)
committerNick Coghlan <ncoghlan@gmail.com>2018-04-25 02:22:28 (GMT)
commit0977091dca59709864b14cfc129388f1f0de7bf7 (patch)
treed6a4f1fd2c977ea619abb77b2e12144ee7dd14e2 /Misc
parent650ba4ffd1dcd4e5eb246d7c176e204eb90c7a86 (diff)
downloadcpython-0977091dca59709864b14cfc129388f1f0de7bf7.zip
cpython-0977091dca59709864b14cfc129388f1f0de7bf7.tar.gz
cpython-0977091dca59709864b14cfc129388f1f0de7bf7.tar.bz2
bpo-33128 Fix duplicated call to importlib._install_external_importers (GH-6273)
External importers were being added in both phases of the import system initialisation. They're only supposed to be added in the second phase, after the import machinery has been appropriately configured.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Core and Builtins/2018-04-24-22-31-04.bpo-33128.g2yLuf.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Core and Builtins/2018-04-24-22-31-04.bpo-33128.g2yLuf.rst b/Misc/NEWS.d/next/Core and Builtins/2018-04-24-22-31-04.bpo-33128.g2yLuf.rst
new file mode 100644
index 0000000..66b98cd
--- /dev/null
+++ b/Misc/NEWS.d/next/Core and Builtins/2018-04-24-22-31-04.bpo-33128.g2yLuf.rst
@@ -0,0 +1,2 @@
+Fix a bug that causes PathFinder to appear twice on sys.meta_path. Patch by
+Pablo Galindo Salgado.