Skip to content

Commit

Permalink
Merged revisions 65787 via svnmerge from
Browse files Browse the repository at this point in the history
svn+ssh://[email protected]/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.
........
  • Loading branch information
brettcannon committed Aug 17, 2008
1 parent 38679e2 commit b5ebf27
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 3 deletions.
1 change: 0 additions & 1 deletion Lib/_dummy_thread.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@
'interrupt_main', 'LockType']

import traceback as _traceback
import warnings

class error(Exception):
"""Dummy implementation of _thread.error."""
Expand Down
1 change: 0 additions & 1 deletion Lib/filecmp.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@

import os
import stat
import warnings
from itertools import filterfalse

__all__ = ["cmp","dircmp","cmpfiles"]
Expand Down
1 change: 0 additions & 1 deletion Lib/shelve.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,6 @@
from io import BytesIO

import collections
import warnings

__all__ = ["Shelf","BsdDbShelf","DbfilenameShelf","open"]

Expand Down

0 comments on commit b5ebf27

Please sign in to comment.