winreg.PyHKEY.Close()

PyHKEY.Close() Closes the underlying Windows handle. If the handle is already closed, no error is raised.

ossaudiodev.oss_audio_device.post()

oss_audio_device.post() Tell the driver that there is likely to be a pause in the output, making it possible for the device to handle the pause more intelligently. You might use this after playing a spot sound effect, before waiting for user input, or before doing disk I/O.

readline.set_completer()

readline.set_completer([function]) Set or remove the completer function. If function is specified, it will be used as the new completer function; if omitted or None, any completer function already installed is removed. The completer function is called as function(text, state), for state in 0, 1, 2, ..., until it returns a non-string value. It should return the next possible completion starting with text. The installed completer function is invoked by the entry_func callback passed to rl_comp

subprocess.Popen.stdout

Popen.stdout If the stdout argument was PIPE, this attribute is a readable stream object as returned by open(). Reading from the stream provides output from the child process. If the universal_newlines argument was True, the stream is a text stream, otherwise it is a byte stream. If the stdout argument was not PIPE, this attribute is None.

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.