summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2018-01-07 16:35:28 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2018-01-07 16:35:28 (GMT)
commit94a3facc0e5ce02ef34d9fa595703cd96cb95984 (patch)
tree6cf9454f7d736790390f1b701df5ae9026afc92d /Misc
parent157be7ca1de0d046a092e2d44d6d7200de6add8b (diff)
downloadcpython-94a3facc0e5ce02ef34d9fa595703cd96cb95984.zip
cpython-94a3facc0e5ce02ef34d9fa595703cd96cb95984.tar.gz
cpython-94a3facc0e5ce02ef34d9fa595703cd96cb95984.tar.bz2
bpo-31802: Fix importing native path module before importing os. (GH-4017) (#5129)
(cherry picked from commit 3460198f6ba40a839f105c381f07179aba1e8c61)
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Library/2017-10-17-14-52-14.bpo-31802.sYj2Zv.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2017-10-17-14-52-14.bpo-31802.sYj2Zv.rst b/Misc/NEWS.d/next/Library/2017-10-17-14-52-14.bpo-31802.sYj2Zv.rst
new file mode 100644
index 0000000..77df6bb
--- /dev/null
+++ b/Misc/NEWS.d/next/Library/2017-10-17-14-52-14.bpo-31802.sYj2Zv.rst
@@ -0,0 +1,2 @@
+Importing native path module (``posixpath``, ``ntpath``) now works even if
+the ``os`` module still is not imported.