pyclbr.Function.module

Function.module The name of the module defining the function described by the function descriptor.

importlib.util.set_loader()

@importlib.util.set_loader A decorator for importlib.abc.Loader.load_module() to set the __loader__ attribute on the returned module. If the attribute is already set the decorator does nothing. It is assumed that the first positional argument to the wrapped method (i.e. self) is what __loader__ should be set to. Changed in version 3.4: Set __loader__ if set to None, as if the attribute does not exist. Deprecated since version 3.4: The import machinery takes care of this automatically.

bytes.join()

bytes.join(iterable) bytearray.join(iterable) Return a bytes or bytearray object which is the concatenation of the binary data sequences in the iterable iterable. A TypeError will be raised if there are any values in iterable that are not bytes-like objects, including str objects. The separator between elements is the contents of the bytes or bytearray object providing this method.

telnetlib.Telnet.read_sb_data()

Telnet.read_sb_data() Return the data collected between a SB/SE pair (suboption begin/end). The callback should access these data when it was invoked with a SE command. This method never blocks.

cmath.isinf()

cmath.isinf(x) Return True if either the real or the imaginary part of x is an infinity, and False otherwise.

zipfile.ZipFile.close()

ZipFile.close() Close the archive file. You must call close() before exiting your program or essential records will not be written.

operator.__or__()

operator.__or__(a, b) Return the bitwise or of a and b.

tkinter.tix.CheckList

class tkinter.tix.CheckList The CheckList widget displays a list of items to be selected by the user. CheckList acts similarly to the Tk checkbutton or radiobutton widgets, except it is capable of handling many more items than checkbuttons or radiobuttons.

os.stat_result.st_rsize

st_rsize Real size of the file.

curses.window.mvderwin()

window.mvderwin(y, x) Move the window inside its parent window. The screen-relative parameters of the window are not changed. This routine is used to display different parts of the parent window at the same physical position on the screen.