diff options
author | Brett Cannon <bcannon@gmail.com> | 2008-08-17 22:31:15 (GMT) |
---|---|---|
committer | Brett Cannon <bcannon@gmail.com> | 2008-08-17 22:31:15 (GMT) |
commit | b5ebf27b88e52836bfa6d97d7817f7f381a1394d (patch) | |
tree | db2a1e6296d59949c7dd94fe7e318011dee1d081 /Lib/filecmp.py | |
parent | 38679e2777dcb3bc939c2610accbdf285106ad22 (diff) | |
download | cpython-b5ebf27b88e52836bfa6d97d7817f7f381a1394d.zip cpython-b5ebf27b88e52836bfa6d97d7817f7f381a1394d.tar.gz cpython-b5ebf27b88e52836bfa6d97d7817f7f381a1394d.tar.bz2 |
Merged revisions 65787 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r65787 | brett.cannon | 2008-08-17 15:10:11 -0700 (Sun, 17 Aug 2008) | 3 lines
Remove imports of 'warnings' that are no longer needed in dummy_thread,
filecmp, and shelve.
........
Diffstat (limited to 'Lib/filecmp.py')
-rw-r--r-- | Lib/filecmp.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Lib/filecmp.py b/Lib/filecmp.py index 68a8321..6dcebaa 100644 --- a/Lib/filecmp.py +++ b/Lib/filecmp.py @@ -11,7 +11,6 @@ Functions: import os import stat -import warnings from itertools import filterfalse __all__ = ["cmp","dircmp","cmpfiles"] |