From: Just van Rossum Date: Tue, 18 Mar 2003 18:48:17 +0000 (+0000) Subject: replace obsolete 'exceptions' implicit by 'warnings' X-Git-Tag: v2.3c1~1439 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=821a0fc140762c281b10dea4bb8676e913007270;p=python replace obsolete 'exceptions' implicit by 'warnings' --- diff --git a/Tools/freeze/freeze.py b/Tools/freeze/freeze.py index 8d1ffdfc1c..c717a36701 100755 --- a/Tools/freeze/freeze.py +++ b/Tools/freeze/freeze.py @@ -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)