summaryrefslogtreecommitdiffstats
path: root/Lib/glob.py
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2011-06-28 15:25:04 (GMT)
committerBenjamin Peterson <benjamin@python.org>2011-06-28 15:25:04 (GMT)
commit274271d1ae71dbd1177b54a5def45fed3ecb501f (patch)
tree50020b9d4c3b3922ce72f5c41b61c4fc969d822e /Lib/glob.py
parente4a51e6543e18a004735e75344009b832134db6e (diff)
downloadcpython-274271d1ae71dbd1177b54a5def45fed3ecb501f.zip
cpython-274271d1ae71dbd1177b54a5def45fed3ecb501f.tar.gz
cpython-274271d1ae71dbd1177b54a5def45fed3ecb501f.tar.bz2
remove unused imports (closes #12432)
A patch from Vincent Legoll.
Diffstat (limited to 'Lib/glob.py')
-rw-r--r--Lib/glob.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/Lib/glob.py b/Lib/glob.py
index 36d493d..c5f5f69 100644
--- a/Lib/glob.py
+++ b/Lib/glob.py
@@ -1,5 +1,6 @@
"""Filename globbing utility."""
+import sys
import os
import re
import fnmatch