module docstring tweaks

This commit is contained in:
Sasha Hart
2014-05-20 16:32:43 -05:00
parent e5da752ef0
commit f957d13848
4 changed files with 5 additions and 10 deletions

View File

@@ -1,5 +1,4 @@
"""
intercept HTTP connections that use httplib or http.client
"""Intercept HTTP connections that use httplib (Py2) or http.client (Py3).
"""
try:

View File

@@ -1,8 +1,4 @@
"""intercept HTTP connections that use httplib2
(see wsgi_intercept/__init__.py for examples)
"""Intercept HTTP connections that use `httplib2 <https://github.com/jcgregorio/httplib2>`_.
"""
import sys

View File

@@ -1,5 +1,4 @@
"""
intercept HTTP connections that use requests
"""Intercept HTTP connections that use `requests <http://docs.python-requests.org/en/latest/>`_.
"""
from . import WSGI_HTTPConnection, wsgi_fake_socket

View File

@@ -1,4 +1,5 @@
"""Intercept HTTP connections that use urllib.request (Py3) aka urllib2 (Python 2).
"""
try:
import urllib.request as url_lib
except ImportError: