diff options
author | Christian Heimes <christian@cheimes.de> | 2008-08-15 18:43:03 +0000 |
---|---|---|
committer | Christian Heimes <christian@cheimes.de> | 2008-08-15 18:43:03 +0000 |
commit | deb75f579b597d996734f66f93a2303bc7ac4fab (patch) | |
tree | 5b899bfb080a8bcd943e58ad41a6c18ced35a162 /Lib/warnings.py | |
parent | 34ed9f7c5e22f8c5ebf38edff64f88842dfba245 (diff) | |
download | cpython-git-deb75f579b597d996734f66f93a2303bc7ac4fab.tar.gz |
Removed some unused imports to decrease the amount of loaded modules during startup.
Added fallback to _dummy_thread for OSs w/o thread support.
Diffstat (limited to 'Lib/warnings.py')
-rw-r--r-- | Lib/warnings.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Lib/warnings.py b/Lib/warnings.py index bcd702c993..0be20e05e3 100644 --- a/Lib/warnings.py +++ b/Lib/warnings.py @@ -5,7 +5,6 @@ # See bug 683658. import linecache import sys -import types __all__ = ["warn", "showwarning", "formatwarning", "filterwarnings", "resetwarnings"] |