From: Guido van Rossum Date: Sat, 11 Apr 1998 01:18:35 +0000 (+0000) Subject: Oops -- remove some debug print statements! X-Git-Tag: v1.5.1~65 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=c74521acc4d3d08fe557a8ac835c1f827d107e7c;p=python Oops -- remove some debug print statements! --- diff --git a/Lib/urllib.py b/Lib/urllib.py index dd0b8dbf33..8a47316c9b 100644 --- a/Lib/urllib.py +++ b/Lib/urllib.py @@ -188,13 +188,9 @@ class URLopener: if not filename: import tempfile garbage, path = splittype(url) - print (garbage, path) garbage, path = splithost(path or "") - print (garbage, path) path, garbage = splitquery(path or "") - print (path, garbage) path, garbage = splitattr(path or "") - print (path, garbage) suffix = os.path.splitext(path)[1] filename = tempfile.mktemp(suffix) self.__tempfiles.append(filename)