[Python-checkins] python/dist/src/Tools/freeze freeze.py,1.42,1.43

Just van Rossum just@letterror.com
Sat, 8 Mar 2003 22:21:40 +0100


Thomas Heller wrote:

> > +     # modules that are imported by the Python runtime
> > +     implicits = []
> > +     for module in ('site', 'exceptions',):
>                                ^^^^^^^^^^^
> 
> Isn't this a relict from the times when exceptions was *not*
> a builtin module (1.5, iirc)?

Good point, I think 'exceptions' should be replaced with 'warnings'...

Just