summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorDong-hee Na <donghee.na92@gmail.com>2019-09-11 16:00:02 (GMT)
committerBrett Cannon <54418+brettcannon@users.noreply.github.com>2019-09-11 16:00:02 (GMT)
commit145cf1f50c8a8e8233e641f345cd5e25ee69190a (patch)
treea34b85110e0ed0bb2f33c4d5d1fc98df13b76990 /Misc
parent1fae844451b120b93880d9360f288c70e125520c (diff)
downloadcpython-145cf1f50c8a8e8233e641f345cd5e25ee69190a.zip
cpython-145cf1f50c8a8e8233e641f345cd5e25ee69190a.tar.gz
cpython-145cf1f50c8a8e8233e641f345cd5e25ee69190a.tar.bz2
bpo-35923: Update the BuiltinImporter to use loader._ORIGIN instead of a hard-coded value (GH-15651)
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Library/2019-09-03-01-41-35.bpo-35923.lYpKbY.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2019-09-03-01-41-35.bpo-35923.lYpKbY.rst b/Misc/NEWS.d/next/Library/2019-09-03-01-41-35.bpo-35923.lYpKbY.rst
new file mode 100644
index 0000000..bd2bba7
--- /dev/null
+++ b/Misc/NEWS.d/next/Library/2019-09-03-01-41-35.bpo-35923.lYpKbY.rst
@@ -0,0 +1,2 @@
+Update :class:`importlib.machinery.BuiltinImporter` to use ``loader._ORIGIN``
+instead of a hardcoded value. Patch by Dong-hee Na.