[issue33830] example output error

2018-06-11 Thread Martin Panter
Martin Panter added the comment: Looks like poor application of a Python 3 patch in Issue 24118. The second request was meant to be for /parrot.spam. -- nosy: +benjamin.peterson, martin.panter ___ Python tracker

[issue33830] example output error

2018-06-11 Thread Aifu LIU
New submission from Aifu LIU : The output of this line: print r2.status, r2.reason should same as: print r1.status, r1.reason from https://docs.python.org/2.7/library/httplib.html >>> import httplib >>> conn = httplib.HTTPSConnection("www.python.org") >>> conn.request("GET", "/") >>>