From 48e2478329b6be67d7858174d146d65f6ccfe728 Mon Sep 17 00:00:00 2001 From: Benjamin Peterson Date: Sun, 29 Mar 2009 13:02:52 +0000 Subject: fix variable name #5595 --- Lib/ntpath.py | 2 +- Misc/NEWS | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/Lib/ntpath.py b/Lib/ntpath.py index 4b78d8d..ac928e1 100644 --- a/Lib/ntpath.py +++ b/Lib/ntpath.py @@ -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] diff --git a/Misc/NEWS b/Misc/NEWS index c6f9594..9422ef1 100644 --- 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. -- cgit v0.12