class documentation

class _FakeUrllib2Request: (source)

View In Hierarchy

A fake urllib2.Request object for cookielib to work with.
See Also
http://docs.python.org/library/urllib2.html#request-objects
Present Since
11.1
Method __init__ Create a fake Urllib2 request.
Method add_unredirected_header Undocumented
Method get_full_url Undocumented
Method get_header Undocumented
Method get_host Undocumented
Method get_type Undocumented
Method has_header Undocumented
Method is_unverifiable Undocumented
Instance Variable headers Request headers.
Instance Variable host The host[:port] of the URI.
Instance Variable origin_req_host Undocumented
Instance Variable type The scheme of the URI.
Instance Variable unverifiable Undocumented
Instance Variable uri Request URI.
def __init__(self, uri): (source)
Create a fake Urllib2 request.
Parameters
uri:bytesRequest URI.
def add_unredirected_header(self, name, value): (source)

Undocumented

def get_full_url(self): (source)

Undocumented

def get_header(self, name, default=None): (source)

Undocumented

def get_host(self): (source)

Undocumented

def get_type(self): (source)

Undocumented

def has_header(self, header): (source)

Undocumented

def is_unverifiable(self): (source)

Undocumented

host: native str = (source)
The host[:port] of the URI.
origin_req_host = (source)

Undocumented

type: native str = (source)
The scheme of the URI.
unverifiable = (source)

Undocumented

uri: native str = (source)
Request URI.