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