From 474e17b0af27b397e6abcb7eca3353775993426c Mon Sep 17 00:00:00 2001 From: Kenneth Reitz Date: Sat, 12 Nov 2011 12:53:23 -0800 Subject: [PATCH] remove bunk __all__s --- requests/api.py | 2 -- requests/async.py | 1 - 2 files changed, 3 deletions(-) diff --git a/requests/api.py b/requests/api.py index fa41b8e..5f30352 100644 --- a/requests/api.py +++ b/requests/api.py @@ -13,8 +13,6 @@ This module implements the Requests API. from .sessions import session -__all__ = ('request', 'get', 'options', 'head', 'post', 'patch', 'put', 'delete') - def request(method, url, params=None, diff --git a/requests/async.py b/requests/async.py index 6b08f89..8bafb1e 100644 --- a/requests/async.py +++ b/requests/async.py @@ -20,7 +20,6 @@ except ImportError: curious_george.patch_all(thread=False) from . import api -from .hooks import dispatch_hook __all__ = ( -- 2.7.4