Public Member Functions | |
def | __init__ |
def | __missing__ |
Public Attributes | |
queue | |
size |
Dynamic cached mapping of header names to Http-Header-Case. Implemented as a dict subclass so that cache hits are as fast as a normal dict lookup, without the overhead of a python function call. >>> normalized_headers = _NormalizedHeaderCache(10) >>> normalized_headers["coNtent-TYPE"] 'Content-Type'
Definition at line 65 of file httputil.py.
def tornado.httputil._NormalizedHeaderCache.__init__ | ( | self, | |
size | |||
) |
Definition at line 76 of file httputil.py.
def tornado.httputil._NormalizedHeaderCache.__missing__ | ( | self, | |
key | |||
) |
Definition at line 81 of file httputil.py.
Definition at line 76 of file httputil.py.
Definition at line 76 of file httputil.py.