update requests module

This commit is contained in:
clinton-hall 2015-08-18 21:06:01 +09:30
parent c0cc0a41ee
commit 6e2169e4db
21 changed files with 612 additions and 379 deletions

View file

@ -157,3 +157,13 @@ class InsecureRequestWarning(SecurityWarning):
class SystemTimeWarning(SecurityWarning):
"Warned when system time is suspected to be wrong"
pass
class InsecurePlatformWarning(SecurityWarning):
"Warned when certain SSL configuration is not available on a platform."
pass
class ResponseNotChunked(ProtocolError, ValueError):
"Response needs to be chunked in order to read it as chunks."
pass