From c74521acc4d3d08fe557a8ac835c1f827d107e7c Mon Sep 17 00:00:00 2001 From: Guido van Rossum Date: Sat, 11 Apr 1998 01:18:35 +0000 Subject: [PATCH] Oops -- remove some debug print statements! --- Lib/urllib.py | 4 ---- 1 file changed, 4 deletions(-) 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) -- 2.50.1