pickle.loads()

pickle.loads(bytes_object, *, fix_imports=True, encoding="ASCII", errors="strict") Read a pickled object hierarchy from a bytes object and return the reconstituted object hierarchy specified therein. The protocol version of the pickle is detected automatically, so no protocol argument is needed. Bytes past the pickled object’s representation are ignored. Optional keyword arguments are fix_imports, encoding and errors, which are used to control compatibility support for pickle stream generate

http.client.HTTPResponse.version

HTTPResponse.version HTTP protocol version used by server. 10 for HTTP/1.0, 11 for HTTP/1.1.

_thread.lock.locked()

lock.locked() Return the status of the lock: True if it has been acquired by some thread, False if not.

ipaddress.IPv6Network.is_unspecified

is_unspecified

xml.parsers.expat.xmlparser.GetBase()

xmlparser.GetBase() Returns a string containing the base set by a previous call to SetBase(), or None if SetBase() hasn’t been called.

curses.window.redrawln()

window.redrawln(beg, num) Indicate that the num screen lines, starting at line beg, are corrupted and should be completely redrawn on the next refresh() call.

xmlrpc.client.DateTime.decode()

decode(string) Accept a string as the instance’s new time value.

re.search()

re.search(pattern, string, flags=0) Scan through string looking for the first location where the regular expression pattern produces a match, and return a corresponding match object. Return None if no position in the string matches the pattern; note that this is different from finding a zero-length match at some point in the string.

smtplib.SMTP.helo()

SMTP.helo(name='') Identify yourself to the SMTP server using HELO. The hostname argument defaults to the fully qualified domain name of the local host. The message returned by the server is stored as the helo_resp attribute of the object. In normal operation it should not be necessary to call this method explicitly. It will be implicitly called by the sendmail() when necessary.

selectors.SelectSelector

class selectors.SelectSelector select.select()-based selector.