stat.filemode()

stat.filemode(mode) Convert a file’s mode to a string of the form ‘-rwxrwxrwx’. New in version 3.3. Changed in version 3.4: The function supports S_IFDOOR, S_IFPORT and S_IFWHT.

ipaddress.IPv4Network.broadcast_address

broadcast_address The broadcast address for the network. Packets sent to the broadcast address should be received by every host on the network.

socketserver.ThreadingTCPServer

class socketserver.ThreadingTCPServer class socketserver.ThreadingUDPServer These classes are pre-defined using the mix-in classes.

logging.Formatter.formatException()

formatException(exc_info) Formats the specified exception information (a standard exception tuple as returned by sys.exc_info()) as a string. This default implementation just uses traceback.print_exception(). The resulting string is returned.

xml.parsers.expat.xmlparser.ProcessingInstructionHandler()

xmlparser.ProcessingInstructionHandler(target, data) Called for every processing instruction.

time.asctime()

time.asctime([t]) Convert a tuple or struct_time representing a time as returned by gmtime() or localtime() to a string of the following form: 'Sun Jun 20 23:21:05 1993'. If t is not provided, the current time as returned by localtime() is used. Locale information is not used by asctime(). Note Unlike the C function of the same name, asctime() does not add a trailing newline.

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.

pyclbr.Function.module

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

os.seteuid()

os.seteuid(euid) Set the current process’s effective user id. Availability: Unix.

wave.open()

wave.open(file, mode=None) If file is a string, open the file by that name, otherwise treat it as a file-like object. mode can be: 'rb' Read only mode. 'wb' Write only mode. Note that it does not allow read/write WAV files. A mode of 'rb' returns a Wave_read object, while a mode of 'wb' returns a Wave_write object. If mode is omitted and a file-like object is passed as file, file.mode is used as the default value for mode. If you pass in a file-like object, the wave object will not clo