diff options
author | Senthil Kumaran <senthil@uthcode.com> | 2011-07-04 00:21:05 (GMT) |
---|---|---|
committer | Senthil Kumaran <senthil@uthcode.com> | 2011-07-04 00:21:05 (GMT) |
commit | 7079240c4aa6b579819f01fad3e99881dfe84731 (patch) | |
tree | dbe07d40d8a7cf2ac7edc909f90f4d3eea976104 /Lib/glob.py | |
parent | e975af62f2a5f45307738dbd5220e8590c10f4a4 (diff) | |
download | cpython-7079240c4aa6b579819f01fad3e99881dfe84731.zip cpython-7079240c4aa6b579819f01fad3e99881dfe84731.tar.gz cpython-7079240c4aa6b579819f01fad3e99881dfe84731.tar.bz2 |
Fix closes issue12432 - remove the unused sys from glob.py
Diffstat (limited to 'Lib/glob.py')
-rw-r--r-- | Lib/glob.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Lib/glob.py b/Lib/glob.py index c5f5f69..36d493d 100644 --- a/Lib/glob.py +++ b/Lib/glob.py @@ -1,6 +1,5 @@ """Filename globbing utility.""" -import sys import os import re import fnmatch |