[Python-Dev] Re: [Python-checkins] python/dist/src/Lib warnings.py,1.19,1.20

Guido van Rossum guido@python.org
Wed, 14 May 2003 13:37:22 -0400


> Modified Files:
> 	warnings.py 
> Log Message:
> defer re module imports to help improve interpreter startup

Are you sure that's going to help?  "import warnings" callse
_processoptions() and makes a few calls to filterwarnings() which
brings in the re module anyway...

--Guido van Rossum (home page: http://www.python.org/~guido/)