calendar.HTMLCalendar.formatmonth()

formatmonth(theyear, themonth, withyear=True) Return a month’s calendar as an HTML table. If withyear is true the year will be included in the header, otherwise just the month name will be used.

smtpd.SMTPChannel.smtp_server

smtp_server Holds the SMTPServer that spawned this channel.

os.path.supports_unicode_filenames

os.path.supports_unicode_filenames True if arbitrary Unicode strings can be used as file names (within limitations imposed by the file system).

plistlib.readPlistFromBytes()

plistlib.readPlistFromBytes(data) Read a plist data from a bytes object. Return the root object. See load() for a description of the keyword arguments. Note Dict values in the result have a __getattr__ method that defers to __getitem_. This means that you can use attribute access to access items of these dictionaries. Deprecated since version 3.4: Use loads() instead.

operator.methodcaller()

operator.methodcaller(name[, args...]) Return a callable object that calls the method name on its operand. If additional arguments and/or keyword arguments are given, they will be given to the method as well. For example: After f = methodcaller('name'), the call f(b) returns b.name(). After f = methodcaller('name', 'foo', bar=1), the call f(b) returns b.name('foo', bar=1). Equivalent to: def methodcaller(name, *args, **kwargs): def caller(obj): return getattr(obj, name)(*args,

traceback.TracebackException.filename

filename For syntax errors - the file name where the error occurred.

dict.get()

get(key[, default]) Return the value for key if key is in the dictionary, else default. If default is not given, it defaults to None, so that this method never raises a KeyError.

ipaddress.ip_interface()

ipaddress.ip_interface(address) Return an IPv4Interface or IPv6Interface object depending on the IP address passed as argument. address is a string or integer representing the IP address. Either IPv4 or IPv6 addresses may be supplied; integers less than 2**32 will be considered to be IPv4 by default. A ValueError is raised if address does not represent a valid IPv4 or IPv6 address.

audioop.alaw2lin()

audioop.alaw2lin(fragment, width) Convert sound fragments in a-LAW encoding to linearly encoded sound fragments. a-LAW encoding always uses 8 bits samples, so width refers only to the sample width of the output fragment here.

os.waitid()

os.waitid(idtype, id, options) Wait for the completion of one or more child processes. idtype can be P_PID, P_PGID or P_ALL. id specifies the pid to wait on. options is constructed from the ORing of one or more of WEXITED, WSTOPPED or WCONTINUED and additionally may be ORed with WNOHANG or WNOWAIT. The return value is an object representing the data contained in the siginfo_t structure, namely: si_pid, si_uid, si_signo, si_status, si_code or None if WNOHANG is specified and there are no chil