unittest.TestResult.shouldStop

shouldStop Set to True when the execution of tests should stop by stop().

dis.hasconst

dis.hasconst Sequence of bytecodes that have a constant parameter.

ipaddress.IPv6Interface.with_netmask

with_netmask

os.setgid()

os.setgid(gid) Set the current process’ group id. Availability: Unix.

unicodedata.digit()

unicodedata.digit(chr[, default]) Returns the digit value assigned to the character chr as integer. If no such value is defined, default is returned, or, if not given, ValueError is raised.

curses.halfdelay()

curses.halfdelay(tenths) Used for half-delay mode, which is similar to cbreak mode in that characters typed by the user are immediately available to the program. However, after blocking for tenths tenths of seconds, an exception is raised if nothing has been typed. The value of tenths must be a number between 1 and 255. Use nocbreak() to leave half-delay mode.

winreg.PyHKEY.Close()

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

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

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.

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.