diff options
author | Raymond Hettinger <python@rcn.com> | 2003-11-02 09:47:05 (GMT) |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2003-11-02 09:47:05 (GMT) |
commit | cc523fc53dd81cc166c99fa632cba204f5a14849 (patch) | |
tree | 83b77aefac97b4d166689c214db072f643809302 /Lib/platform.py | |
parent | dc113a8a06668c652895f6745808b1b04cbfc103 (diff) | |
download | cpython-cc523fc53dd81cc166c99fa632cba204f5a14849.zip cpython-cc523fc53dd81cc166c99fa632cba204f5a14849.tar.gz cpython-cc523fc53dd81cc166c99fa632cba204f5a14849.tar.bz2 |
SF patch #834015: Remove imports of unused modules
(Contributed by George Yoshida.)
Diffstat (limited to 'Lib/platform.py')
-rwxr-xr-x | Lib/platform.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Lib/platform.py b/Lib/platform.py index 1547e12..31c47b4 100755 --- a/Lib/platform.py +++ b/Lib/platform.py @@ -1082,7 +1082,6 @@ def _sys_version(): """ global _sys_version_cache - import time if _sys_version_cache is not None: return _sys_version_cache |