From: Guido van Rossum Date: Tue, 14 Jan 1992 18:27:26 +0000 (+0000) Subject: Get rid of debug print statement. X-Git-Tag: v0.9.8~605 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=3ec6c1d40110fdcaceb6d08e29937b547ed2112e;p=thirdparty%2FPython%2Fcpython.git Get rid of debug print statement. --- diff --git a/Lib/fnmatch.py b/Lib/fnmatch.py index c30aaca998b6..5c1bc711c115 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