Part of twisted.web.http_headers View Source View In Hierarchy
| Instance Variables | _rawHeaders | A dictmapping header names asstrtolistsof header values asstr. | 
| Class Variables | _caseMappings | A dictthat maps lowercase header names to their 
canonicalized representation. | 
| Method | __init__ | Undocumented | 
| Method | __cmp__ | Define Headersinstances as being equal to each other if they have the same raw 
headers. | 
| Method | hasHeader | Check for the existence of a given header. | 
| Method | removeHeader | Remove the named header from this header object. | 
| Method | setRawHeaders | Sets the raw representation of the given header. | 
| Method | addRawHeader | Add a new raw value for the given header. | 
| Method | getRawHeaders | Returns a list of headers matching the given name as the raw string given. | 
| Method | getAllRawHeaders | Return an iterator of key, value pairs of all headers contained in this object, as strings. The keys are capitalized in canonical capitalization. | 
| Method | _canonicalNameCaps | Return the canonical name for the given header. | 
Headers 
instances as being equal to each other if they have the same raw 
headers.
| Parameters | name | The name of the HTTP header to check for.
 (type: str) | 
| Returns | Trueif the header exists, otherwiseFalse.
 (type:bool) | |
| Parameters | name | The name of the HTTP header to remove.
 (type: str) | 
| Returns | None | |
| Parameters | name | The name of the HTTP header to set the values for.
 (type: str) | 
| values | A list of strings each one being a header value of the given name.
 (type: list) | |
| Returns | None | |
| Parameters | name | The name of the header for which to set the value.
 (type: str) | 
| value | The value to set for the named header.
 (type: str) | 
| Parameters | name | The name of the HTTP header to get the values of.
 (type: str) | 
| default | The value to return if no header with the given nameexists. | |
| Returns | A listof values for the given header.
 (type:list) | |
| Parameters | name | The all-lowercase header name to capitalize in its canonical form.
 (type: str) | 
| Returns | The canonical name of the header.
 (type: str) | |