diff options
author | Guido van Rossum <guido@python.org> | 1992-01-14 18:27:26 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1992-01-14 18:27:26 (GMT) |
commit | 3ec6c1d40110fdcaceb6d08e29937b547ed2112e (patch) | |
tree | c12727c72cea064ac93419c34859f7f932dc3b8c /Lib/fnmatch.py | |
parent | 526e9096146fe56a9df191ae257ceed71405ff1e (diff) | |
download | cpython-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.py | 1 |
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 |