ctypes.c_float

class ctypes.c_float Represents the C float datatype. The constructor accepts an optional float initializer.

curses.echo()

curses.echo() Enter echo mode. In echo mode, each character input is echoed to the screen as it is entered.

html.parser.HTMLParser.handle_decl()

HTMLParser.handle_decl(decl) This method is called to handle an HTML doctype declaration (e.g. <!DOCTYPE html>). The decl parameter will be the entire contents of the declaration inside the <!...> markup (e.g. 'DOCTYPE html').

xdrlib.Packer.pack_double()

Packer.pack_double(value) Packs the double-precision floating point number value.

multiprocessing.current_process()

multiprocessing.current_process() Return the Process object corresponding to the current process. An analogue of threading.current_thread().

datetime.date.__str__()

date.__str__() For a date d, str(d) is equivalent to d.isoformat().

sysconfig.get_config_var()

sysconfig.get_config_var(name) Return the value of a single variable name. Equivalent to get_config_vars().get(name). If name is not found, return None.

subprocess.Popen.terminate()

Popen.terminate() Stop the child. On Posix OSs the method sends SIGTERM to the child. On Windows the Win32 API function TerminateProcess() is called to stop the child.

bdb.Bdb.dispatch_exception()

dispatch_exception(frame, arg) If the debugger should stop at this exception, invokes the user_exception() method (which should be overridden in subclasses). Raise a BdbQuit exception if the Bdb.quitting flag is set (which can be set from user_exception()). Return a reference to the trace_dispatch() method for further tracing in that scope.

enum.IntEnum

class enum.IntEnum Base class for creating enumerated constants that are also subclasses of int.