swmcl

Results 3 comments of swmcl

The reason for the difference between debugging and running is: 1. when the response.content is accessed, it calls iter_content which then calls raw(urllib3.response.HTTPResponse).stream() with decode_content=True 2. when we expand the...

Thanks for your reply @sigmavirus24! Now I think the result of the difference between debugging and running a program was caused by maybe an issue of the PyCharm. I don't...

Thanks for the answers! > We don't access non public properties nor will we Although the _body of the urllib3.response.HTTPResponse is a non-public field, but the data property DO be...