Remove unused loggers.
authorMartijn Pieters <mj@zopatista.com>
Mon, 3 Feb 2014 13:43:59 +0000 (13:43 +0000)
committerMartijn Pieters <mj@zopatista.com>
Mon, 3 Feb 2014 13:43:59 +0000 (13:43 +0000)
requests/auth.py
requests/models.py

index 6664cd80db4b1b1c4a9cd684ea82eb468cd1c21c..9f831b7ad03c97357bf298ec12c914d20343f45a 100644 (file)
@@ -11,7 +11,6 @@ import os
 import re
 import time
 import hashlib
-import logging
 
 from base64 import b64encode
 
@@ -19,8 +18,6 @@ from .compat import urlparse, str
 from .cookies import extract_cookies_to_jar
 from .utils import parse_dict_header
 
-log = logging.getLogger(__name__)
-
 CONTENT_TYPE_FORM_URLENCODED = 'application/x-www-form-urlencoded'
 CONTENT_TYPE_MULTI_PART = 'multipart/form-data'
 
index 014ca7891e935abe763fcc013562fcb9d7e12b0b..49797a7f396973ca40f0a37263945a5e8290f40a 100644 (file)
@@ -8,7 +8,6 @@ This module contains the primary objects that power Requests.
 """
 
 import collections
-import logging
 import datetime
 
 from io import BytesIO, UnsupportedOperation
@@ -35,8 +34,6 @@ from .compat import (
 CONTENT_CHUNK_SIZE = 10 * 1024
 ITER_CHUNK_SIZE = 512
 
-log = logging.getLogger(__name__)
-
 
 class RequestEncodingMixin(object):
     @property