summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorTim Golden <mail@timgolden.me.uk>2013-08-01 11:44:00 (GMT)
committerTim Golden <mail@timgolden.me.uk>2013-08-01 11:44:00 (GMT)
commit6b528067c50b9dbf1c53fbc8b6fa959050c5dfcd (patch)
tree523ab53f48183089526e9f3cdd6737fbc7f62027 /Misc
parent536ffe161c014f3646cbf52bc527f2ba9ebd6478 (diff)
downloadcpython-6b528067c50b9dbf1c53fbc8b6fa959050c5dfcd.zip
cpython-6b528067c50b9dbf1c53fbc8b6fa959050c5dfcd.tar.gz
cpython-6b528067c50b9dbf1c53fbc8b6fa959050c5dfcd.tar.bz2
Issue #9035: os.path.ismount now recognises volumes mounted below
a drive root on Windows. Original patch by Atsuo Ishimoto.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index df075b0..088ad42 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -10,6 +10,9 @@ What's New in Python 3.4.0 Alpha 1?
Core and Builtins
-----------------
+- Issue #9035: ismount now recognises volumes mounted below a drive root
+ on Windows. Original patch by Atsuo Ishimoto.
+
- Issue #18214: Improve finalization of Python modules to avoid setting
their globals to None, in most cases.