mirror of https://github.com/python/cpython.git
Prevent convert_path from crashing if the path is an empty string. Bugfix candidate.
This commit is contained in:
parent
efaffae8f6
commit
0b5c11252d
|
@ -84,9 +84,9 @@ def convert_path (pathname):
|
|||
"""
|
||||
if os.sep == '/':
|
||||
return pathname
|
||||
if pathname[0] == '/':
|
||||
if pathname and pathname[0] == '/':
|
||||
raise ValueError, "path '%s' cannot be absolute" % pathname
|
||||
if pathname[-1] == '/':
|
||||
if pathname and pathname[-1] == '/':
|
||||
raise ValueError, "path '%s' cannot end with '/'" % pathname
|
||||
|
||||
paths = string.split(pathname, '/')
|
||||
|
|
Loading…
Reference in New Issue