diff options
author | Guido van Rossum <guido@python.org> | 1998-04-11 01:18:35 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1998-04-11 01:18:35 (GMT) |
commit | c74521acc4d3d08fe557a8ac835c1f827d107e7c (patch) | |
tree | 89735408da33e1d47c4adba1d0cc8a642bb75c3e /Lib | |
parent | cecadc469b2bbf09757c8ab0503f09de60954687 (diff) | |
download | cpython-c74521acc4d3d08fe557a8ac835c1f827d107e7c.zip cpython-c74521acc4d3d08fe557a8ac835c1f827d107e7c.tar.gz cpython-c74521acc4d3d08fe557a8ac835c1f827d107e7c.tar.bz2 |
Oops -- remove some debug print statements!
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/urllib.py | 4 |
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) |