No need to assign the results of expressions used only for side effects.

This commit is contained in:
Georg Brandl 2010-02-06 22:59:15 +00:00
parent 7d4b759bd9
commit 84fedf7f06
8 changed files with 7 additions and 9 deletions

View file

@ -15,7 +15,7 @@ __all__ = ['commonprefix', 'exists', 'getatime', 'getctime', 'getmtime',
def exists(path):
"""Test whether a path exists. Returns False for broken symbolic links"""
try:
st = os.stat(path)
os.stat(path)
except os.error:
return False
return True