regex.match() result, and wrong logic in getfirstmatchingheader()
when the same header occurs twice consecutively
elif headerseen and line[0] in ' \t':
# It's a continuation line.
list.append(line)
- elif regex.match('^[!-9;-~]+:', line):
+ elif regex.match('^[!-9;-~]+:', line) >= 0:
# It's a header line.
list.append(line)
headerseen = 1
list = []
hit = 0
for line in self.headers:
- if string.lower(line[:n]) == name:
- hit = 1
- elif line[:1] not in string.whitespace:
- if hit:
+ if hit:
+ if line[:1] not in string.whitespace:
break
+ elif string.lower(line[:n]) == name:
+ hit = 1
if hit:
list.append(line)
return list
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] = \