summaryrefslogtreecommitdiffstats
path: root/Lib
diff options
context:
space:
mode:
Diffstat (limited to 'Lib')
-rw-r--r--Lib/urllib.py4
1 files changed, 0 insertions, 4 deletions
diff --git a/Lib/urllib.py b/Lib/urllib.py
index dd0b8db..8a47316 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)