inspect.isclass()

inspect.isclass(object) Return true if the object is a class, whether built-in or created in Python code.

inspect.Parameter.default

default The default value for the parameter. If the parameter has no default value, this attribute is set to Parameter.empty.

multiprocessing.managers.BaseProxy._getvalue()

_getvalue() Return a copy of the referent. If the referent is unpicklable then this will raise an exception.

plistlib.writePlist()

plistlib.writePlist(rootObject, pathOrFile) Write rootObject to an XML plist file. pathOrFile may be either a file name or a (writable and binary) file object Deprecated since version 3.4: Use dump() instead.

ftplib.FTP.set_debuglevel()

FTP.set_debuglevel(level) Set the instance’s debugging level. This controls the amount of debugging output printed. The default, 0, produces no debugging output. A value of 1 produces a moderate amount of debugging output, generally a single line per request. A value of 2 or higher produces the maximum amount of debugging output, logging each line sent and received on the control connection.

io.TextIOBase.write()

write(s) Write the string s to the stream and return the number of characters written.

gc.set_debug()

gc.set_debug(flags) Set the garbage collection debugging flags. Debugging information will be written to sys.stderr. See below for a list of debugging flags which can be combined using bit operations to control debugging.

ipaddress.IPv6Network.is_private

is_private

io.RawIOBase.write()

write(b) Write the given bytes-like object, b, to the underlying raw stream, and return the number of bytes written. This can be less than the length of b in bytes, depending on specifics of the underlying raw stream, and especially if it is in non-blocking mode. None is returned if the raw stream is set not to block and no single byte could be readily written to it. The caller may release or mutate b after this method returns, so the implementation should only access b during the method cal

set.remove()

remove(elem) Remove element elem from the set. Raises KeyError if elem is not contained in the set.