summaryrefslogtreecommitdiffstats
path: root/Lib/fnmatch.py
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1992-01-14 18:27:26 (GMT)
committerGuido van Rossum <guido@python.org>1992-01-14 18:27:26 (GMT)
commit3ec6c1d40110fdcaceb6d08e29937b547ed2112e (patch)
treec12727c72cea064ac93419c34859f7f932dc3b8c /Lib/fnmatch.py
parent526e9096146fe56a9df191ae257ceed71405ff1e (diff)
downloadcpython-3ec6c1d40110fdcaceb6d08e29937b547ed2112e.zip
cpython-3ec6c1d40110fdcaceb6d08e29937b547ed2112e.tar.gz
cpython-3ec6c1d40110fdcaceb6d08e29937b547ed2112e.tar.bz2
Get rid of debug print statement.
Diffstat (limited to 'Lib/fnmatch.py')
-rw-r--r--Lib/fnmatch.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/Lib/fnmatch.py b/Lib/fnmatch.py
index c30aaca..5c1bc71 100644
--- a/Lib/fnmatch.py
+++ b/Lib/fnmatch.py
@@ -53,5 +53,4 @@ def translate(pat):
res = res + ('\\' + c)
else:
res = res + c
- print 'translate(' + `pat` + ') == ' + `res`
return res