]> granicus.if.org Git - python/commitdiff
fix variable name #5595
authorBenjamin Peterson <benjamin@python.org>
Sun, 29 Mar 2009 13:02:52 +0000 (13:02 +0000)
committerBenjamin Peterson <benjamin@python.org>
Sun, 29 Mar 2009 13:02:52 +0000 (13:02 +0000)
Lib/ntpath.py
Misc/NEWS

index 4b78d8d223b6158059be27312ac8e03bc169fbe8..ac928e1a928d17c7b3377b27e13b506c0672098a 100644 (file)
@@ -257,7 +257,7 @@ lexists = exists
 def ismount(path):
     """Test whether a path is a mount point (defined as root of drive)"""
     unc, rest = splitunc(path)
-    seps = _get_bothseps(p)
+    seps = _get_bothseps(path)
     if unc:
         return rest in p[:0] + seps
     p = splitdrive(path)[1]
index c6f9594170c15c4244c1f457d377261d8c0ab389..9422ef1dd2ff6c84c128e28f91b62d66fbc42efb 100644 (file)
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -43,6 +43,8 @@ Core and Builtins
 Library
 -------
 
+- Issue #5595: Fix UnboundedLocalError in ntpath.ismount().
+
 - Issue #1174606: Calling read() without arguments of an unbounded file
   (typically /dev/zero under Unix) could crash the interpreter.