removed unused function

This commit is contained in:
Pablo Hoffman 2011-03-24 09:03:57 -03:00
parent 3954e600ca
commit 84dee1f77f
1 changed files with 0 additions and 7 deletions

View File

@ -64,13 +64,6 @@ def request_authenticate(request, username, password):
"""
request.headers['Authorization'] = basic_auth_header(username, password)
def request_info(request):
"""Return a short string with request info including method, url and
fingeprint. Mainly used for debugging
"""
fp = request_fingerprint(request)
return "<Request: %s %s (%s..)>" % (request.method, request.url, fp[:8])
def request_httprepr(request):
"""Return the raw HTTP representation (as string) of the given request.
This is provided only for reference since it's not the actual stream of