summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2018-01-07 15:54:31 (GMT)
committerGitHub <noreply@github.com>2018-01-07 15:54:31 (GMT)
commit3460198f6ba40a839f105c381f07179aba1e8c61 (patch)
tree1b43b27d96931ebfd4c7f23758da932d42c0940e /Misc
parente46a8af450210ee5c7f0459ad6beddbc626ae60f (diff)
downloadcpython-3460198f6ba40a839f105c381f07179aba1e8c61.zip
cpython-3460198f6ba40a839f105c381f07179aba1e8c61.tar.gz
cpython-3460198f6ba40a839f105c381f07179aba1e8c61.tar.bz2
bpo-31802: Fix importing native path module before importing os. (#4017)
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.