This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author karlcow
Recipients karlcow, orsenthil, pitrou, r.david.murray
Date 2014-09-25.04:12:40
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1411618360.59.0.56922129773.issue15799@psf.upfronthosting.co.za>
In-reply-to
Content
Let's close this.

>>> "HTTP/1.1    301 ".split(None, 2)
['HTTP/1.1', '301']
>>> "HTTP/1.1    301 ".split(' ', 2)
['HTTP/1.1', '', '  301 ']

I think it would be nice to have a way to warn without stopping, but the last comment from r.david.murray makes sense too. :)
History
Date User Action Args
2014-09-25 04:12:40karlcowsetrecipients: + karlcow, orsenthil, pitrou, r.david.murray
2014-09-25 04:12:40karlcowsetmessageid: <1411618360.59.0.56922129773.issue15799@psf.upfronthosting.co.za>
2014-09-25 04:12:40karlcowlinkissue15799 messages
2014-09-25 04:12:40karlcowcreate