msilib.Record.SetInteger()

Record.SetInteger(field, value) Set field to value through MsiRecordSetInteger(). Both field and value must be an integer.

wsgiref.handlers.BaseHandler.wsgi_multiprocess

wsgi_multiprocess The value to be used for the wsgi.multiprocess environment variable. It defaults to true in BaseHandler, but may have a different default (or be set by the constructor) in the other subclasses.

urllib.request.AbstractDigestAuthHandler

class urllib.request.AbstractDigestAuthHandler(password_mgr=None) This is a mixin class that helps with HTTP authentication, both to the remote host and to a proxy. password_mgr, if given, should be something that is compatible with HTTPPasswordMgr; refer to section HTTPPasswordMgr Objects for information on the interface that must be supported.

socket.socket.bind()

socket.bind(address) Bind the socket to address. The socket must not already be bound. (The format of address depends on the address family — see above.)

ssl.MemoryBIO.eof

eof A boolean indicating whether the memory BIO is current at the end-of-file position.

zipfile.ZipFile.namelist()

ZipFile.namelist() Return a list of archive members by name.

gzip.GzipFile.peek()

peek(n) Read n uncompressed bytes without advancing the file position. At most one single read on the compressed stream is done to satisfy the call. The number of bytes returned may be more or less than requested. Note While calling peek() does not change the file position of the GzipFile, it may change the position of the underlying file object (e.g. if the GzipFile was constructed with the fileobj parameter). New in version 3.2.

logging.critical()

logging.critical(msg, *args, **kwargs) Logs a message with level CRITICAL on the root logger. The arguments are interpreted as for debug().

mailbox.mboxMessage.remove_flag()

remove_flag(flag) Unset the flag(s) specified by flag without changing other flags. To remove more than one flag at a time, flag maybe a string of more than one character.

socket.socket.close()

socket.close() Mark the socket closed. The underlying system resource (e.g. a file descriptor) is also closed when all file objects from makefile() are closed. Once that happens, all future operations on the socket object will fail. The remote end will receive no more data (after queued data is flushed). Sockets are automatically closed when they are garbage-collected, but it is recommended to close() them explicitly, or to use a with statement around them. Note close() releases the resourc