replace obsolete 'exceptions' implicit by 'warnings'

This commit is contained in:
Just van Rossum 2003-03-18 18:48:17 +00:00
parent 6e54f579a6
commit 821a0fc140
1 changed files with 1 additions and 1 deletions

View File

@ -201,7 +201,7 @@ def main():
# modules that are imported by the Python runtime
implicits = []
for module in ('site', 'exceptions',):
for module in ('site', 'warnings',):
if module not in exclude:
implicits.append(module)