* Lib/rfc822.py: fix two bugs: error in readheaders interpreting
	regex.match() result, and wrong logic in getfirstmatchingheader()
	when the same header occurs twice consecutively
diff --git a/Lib/urllib.py b/Lib/urllib.py
index 14fcefa..e8f56a7 100644
--- a/Lib/urllib.py
+++ b/Lib/urllib.py
@@ -191,7 +191,7 @@
 		dirs, file = dirs[:-1], dirs[-1]
 		if dirs and not dirs[0]: dirs = dirs[1:]
 		key = (user, host, port, string.joinfields(dirs, '/'))
-		print 'key =', key
+##		print 'key =', key
 		try:
 			if not self.ftpcache.has_key(key):
 				self.ftpcache[key] = \