import httplib # only for the default HTTP port
from calendar import timegm
-debug = 0 # set to true to enable debugging via the logging module
+debug = False # set to True to enable debugging via the logging module
logger = None
def _debug(*args):
- global logger
if not debug:
return
+ global logger
if not logger:
import logging
logger = logging.getLogger("cookielib")
pass
# copied from cookielib.py
-cut_port_re = re.compile(r":\d+$")
+_cut_port_re = re.compile(r":\d+$")
def request_host(request):
"""Return request-host, as defined by RFC 2965.
host = request.get_header("Host", "")
# remove port, if present
- host = cut_port_re.sub("", host, 1)
+ host = _cut_port_re.sub("", host, 1)
return host.lower()
class Request: