sys.stdout

sys.stdout sys.stderr File objects used by the interpreter for standard input, output and errors: stdin is used for all interactive input (including calls to input()); stdout is used for the output of print() and expression statements and for the prompts of input(); The interpreter’s own prompts and its error messages go to stderr. These streams are regular text files like those returned by the open() function. Their parameters are chosen as follows: The character encoding is platform-de

importlib.abc.SourceLoader.is_package()

is_package(fullname) Concrete implementation of InspectLoader.is_package(). A module is determined to be a package if its file path (as provided by ExecutionLoader.get_filename()) is a file named __init__ when the file extension is removed and the module name itself does not end in __init__.

ipaddress.IPv6Network.broadcast_address

broadcast_address

test.support.make_bad_fd()

test.support.make_bad_fd() Create an invalid file descriptor by opening and closing a temporary file, and returning its descriptor.

stat.S_ISCHR()

stat.S_ISCHR(mode) Return non-zero if the mode is from a character special device file.

msilib.Record.GetInteger()

Record.GetInteger(field) Return the value of field as an integer where possible. field must be an integer.

curses.window.touchwin()

window.touchwin() Pretend the whole window has been changed, for purposes of drawing optimizations.

doctest.testfile()

doctest.testfile(filename, module_relative=True, name=None, package=None, globs=None, verbose=None, report=True, optionflags=0, extraglobs=None, raise_on_error=False, parser=DocTestParser(), encoding=None) All arguments except filename are optional, and should be specified in keyword form. Test examples in the file named filename. Return (failure_count, test_count). Optional argument module_relative specifies how the filename should be interpreted: If module_relative is True (the default), t

msvcrt.get_osfhandle()

msvcrt.get_osfhandle(fd) Return the file handle for the file descriptor fd. Raises OSError if fd is not recognized.

html.unescape()

html.unescape(s) Convert all named and numeric character references (e.g. >, >, &x3e;) in the string s to the corresponding unicode characters. This function uses the rules defined by the HTML 5 standard for both valid and invalid character references, and the list of HTML 5 named character references. New in version 3.4.