Antoine Pitrou <pit...@free.fr> added the comment: > OK, thanks. > By the way, why is the token stripped? > token = token[len(h):].lstrip(" ") > > "X-Header: test \r\n" in an header is kept in the overview as-is. > I do not see why " test " should not be the value returned.
It's a simple way of handling "Xref: foo" and returning "foo" rather than " foo". If spaces are supposed to be significant I can just strip the first one, though. > Also, with: > token = token or None > > "X-Header: \r\n" becomes None if I understand how the source code > works... Yet, it is a real '', not None. Er, so you're disagreeing with your previous message? Or am I missing something? :) ---------- _______________________________________ Python tracker <rep...@bugs.python.org> <http://bugs.python.org/issue10281> _______________________________________ _______________________________________________ Python-bugs-list mailing list Unsubscribe: http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com