summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1998-04-11 01:18:35 +0000
committerGuido van Rossum <guido@python.org>1998-04-11 01:18:35 +0000
commitc74521acc4d3d08fe557a8ac835c1f827d107e7c (patch)
tree89735408da33e1d47c4adba1d0cc8a642bb75c3e
parentcecadc469b2bbf09757c8ab0503f09de60954687 (diff)
downloadcpython-git-c74521acc4d3d08fe557a8ac835c1f827d107e7c.tar.gz
Oops -- remove some debug print statements!
-rw-r--r--Lib/urllib.py4
1 files changed, 0 insertions, 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)