diff options
author | Tim Peters <tim.peters@gmail.com> | 2004-10-27 02:44:10 (GMT) |
---|---|---|
committer | Tim Peters <tim.peters@gmail.com> | 2004-10-27 02:44:10 (GMT) |
commit | 1816d79bac1e74577fe4914c6a62e6e67450cc3c (patch) | |
tree | a1f9df118764778c18151a1f507647f77c4cdcfc | |
parent | 10d59f3fa155ca75e7cad1550e5d9d194a75afbb (diff) | |
download | cpython-1816d79bac1e74577fe4914c6a62e6e67450cc3c.zip cpython-1816d79bac1e74577fe4914c6a62e6e67450cc3c.tar.gz cpython-1816d79bac1e74577fe4914c6a62e6e67450cc3c.tar.bz2 |
Removed newly redundant embedded import.
-rw-r--r-- | Lib/test/test_traceback.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Lib/test/test_traceback.py b/Lib/test/test_traceback.py index 511fb58..da56e0d 100644 --- a/Lib/test/test_traceback.py +++ b/Lib/test/test_traceback.py @@ -57,7 +57,6 @@ def test(): past = time.time() - 3 os.utime(testfile, (past, past)) else: - import time time.sleep(3) # not to stay in same mtime. if 'test_bug737473' in sys.modules: |