diff options
author | 2002-06-04 20:18:24 +0000 | |
---|---|---|
committer | 2002-06-04 20:18:24 +0000 | |
commit | 332a1461274c356d38f558b27096708879fc36b4 (patch) | |
tree | 4ac01bccd463b02d4111c3fc44b9dd04063f9c6a /Lib/distutils/filelist.py | |
parent | Make setup.py less chatty by default. (diff) | |
download | cpython-332a1461274c356d38f558b27096708879fc36b4.tar.gz cpython-332a1461274c356d38f558b27096708879fc36b4.tar.bz2 cpython-332a1461274c356d38f558b27096708879fc36b4.zip |
Remove unused imports caught by pychecker
Diffstat (limited to 'Lib/distutils/filelist.py')
-rw-r--r-- | Lib/distutils/filelist.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/distutils/filelist.py b/Lib/distutils/filelist.py index d39c835869b..3ed6f03291c 100644 --- a/Lib/distutils/filelist.py +++ b/Lib/distutils/filelist.py @@ -11,7 +11,7 @@ and building lists of files. __revision__ = "$Id$" -import sys, os, string, re +import os, string, re import fnmatch from types import * from glob import glob |