1.9.30 sync.
[gae.git] / python / google / appengine / dist27 / httplib.py
blob774df4fb706981504649d9f59ad77379b246cc54
1 # Copyright 2013 Google Inc. All Rights Reserved.
5 import os
7 if 'GAE_USE_SOCKETS_HTTPLIB' in os.environ:
8 from python_std_lib import httplib
9 else:
10 from gae_override import httplib
12 # Can't just do from version.httplib import * as that skips variables
13 # prefixed with an underscore. As this proxy should be transparent, we need
14 # every variable.
15 globals().update(httplib.__dict__)