codecs.iterencode()

codecs.iterencode(iterator, encoding, errors='strict', **kwargs) Uses an incremental encoder to iteratively encode the input provided by iterator. This function is a generator. The errors argument (as well as any other keyword argument) is passed through to the incremental encoder.

wsgiref.handlers.BaseHandler.sendfile()

sendfile() Override to implement platform-specific file transmission. This method is called only if the application’s return value is an instance of the class specified by the wsgi_file_wrapper attribute. It should return a true value if it was able to successfully transmit the file, so that the default transmission code will not be executed. The default implementation of this method just returns a false value.

os.DirEntry.inode()

inode() Return the inode number of the entry. The result is cached on the DirEntry object. Use os.stat(entry.path, follow_symlinks=False).st_ino to fetch up-to-date information. On the first, uncached call, a system call is required on Windows but not on Unix.

imaplib.IMAP4.setannotation()

IMAP4.setannotation(mailbox, entry, attribute[, ...]) Set ANNOTATIONs for mailbox. The method is non-standard, but is supported by the Cyrus server.

codecs.getencoder()

codecs.getencoder(encoding) Look up the codec for the given encoding and return its encoder function. Raises a LookupError in case the encoding cannot be found.

http.cookies.BaseCookie

class http.cookies.BaseCookie([input]) This class is a dictionary-like object whose keys are strings and whose values are Morsel instances. Note that upon setting a key to a value, the value is first converted to a Morsel containing the key and the value. If input is given, it is passed to the load() method.

xmlrpc.server.SimpleXMLRPCServer.register_introspection_functions()

SimpleXMLRPCServer.register_introspection_functions() Registers the XML-RPC introspection functions system.listMethods, system.methodHelp and system.methodSignature.

unittest.TestCase.assertIsInstance()

assertIsInstance(obj, cls, msg=None) assertNotIsInstance(obj, cls, msg=None) Test that obj is (or is not) an instance of cls (which can be a class or a tuple of classes, as supported by isinstance()). To check for the exact type, use assertIs(type(obj), cls). New in version 3.2.

sys.displayhook()

sys.displayhook(value) If value is not None, this function prints repr(value) to sys.stdout, and saves value in builtins._. If repr(value) is not encodable to sys.stdout.encoding with sys.stdout.errors error handler (which is probably 'strict'), encode it to sys.stdout.encoding with 'backslashreplace' error handler. sys.displayhook is called on the result of evaluating an expression entered in an interactive Python session. The display of these values can be customized by assigning another o

msilib.View.Fetch()

View.Fetch() Return a result record of the query, through calling MsiViewFetch().