http.cookiejar.CookieJar.make_cookies()

CookieJar.make_cookies(response, request) Return sequence of Cookie objects extracted from response object

2016-10-07 17:34:00
cgi.FieldStorage.getfirst()

FieldStorage.getfirst(name, default=None) This method always returns only one value associated with form field name

2016-10-07 17:28:22
http.server.BaseHTTPRequestHandler

class http.server.BaseHTTPRequestHandler(request, client_address, server) This class is used to handle the HTTP requests that

2016-10-07 17:34:11
http.server.SimpleHTTPRequestHandler.do_GET()

do_GET() The request is mapped to a local file by interpreting the request as a path relative to the current working directory

2016-10-07 17:34:18
xmlrpc.client.ServerProxy

class xmlrpc.client.ServerProxy(uri, transport=None, encoding=None, verbose=False, allow_none=False, use_datetime=False, use_builtin_types=False, *, context=None)

2016-10-07 17:48:34
xmlrpc.server.CGIXMLRPCRequestHandler.handle_request()

CGIXMLRPCRequestHandler.handle_request(request_text=None) Handle an XML-RPC request. If request_text is given, it should

2016-10-07 17:48:35
http.cookiejar.DefaultCookiePolicy.strict_ns_unverifiable

DefaultCookiePolicy.strict_ns_unverifiable Apply RFC 2965 rules on unverifiable transactions even to Netscape cookies.

2016-10-07 17:34:05
xmlrpc.client.ServerProxy.system.methodSignature()

ServerProxy.system.methodSignature(name) This method takes one parameter, the name of a method implemented by the XML-RPC server

2016-10-07 17:48:34
cgi.print_environ_usage()

cgi.print_environ_usage() Print a list of useful (used by CGI) environment variables in HTML.

2016-10-07 17:28:23
http.client.HTTPResponse.read()

HTTPResponse.read([amt]) Reads and returns the response body, or up to the next amt bytes.

2016-10-07 17:33:52