Issue #16706: get rid of os.error

This commit is contained in:
Andrew Svetlov 2012-12-18 22:02:39 +02:00
parent a191959849
commit ad28c7f9da
33 changed files with 4089 additions and 4123 deletions

View file

@ -53,7 +53,7 @@ def main():
for dir in sys.path:
try:
names = os.listdir(dir)
except os.error:
except OSError:
continue
print("Scanning", dir, "...", file=sys.stderr)
for name in names: