[EMAIL PROTECTED] wrote: > @@ -399,9 +393,8 @@ > del self[name] # Won't fail if it doesn't exist > self.dict[name.lower()] = value > text = name + ": " + value > - lines = text.split("\n") > - for line in lines: > - self.headers.append(line + "\n") > + self.headers.extend(text.splitlines(True)) > + self.headers.append('\n')
and you're 100% sure that the change in how things are stored in headers won't affect any existing code? (the docstring says that headers contain a list of lines, which is no longer true) </F> _______________________________________________ Python-Dev mailing list Python-Dev@python.org http://mail.python.org/mailman/listinfo/python-dev Unsubscribe: http://mail.python.org/mailman/options/python-dev/archive%40mail-archive.com