argparse.ArgumentParser.parse_known_args()

ArgumentParser.parse_known_args(args=None, namespace=None)

ossaudiodev.oss_audio_device.write()

oss_audio_device.write(data) Write a bytes-like object data to the audio device and return the number of bytes written. If the audio device is in blocking mode (the default), the entire data is always written (again, this is different from usual Unix device semantics). If the device is in non-blocking mode, some data may not be written —see writeall(). Changed in version 3.5: Writable bytes-like object is now accepted.

xml.sax.xmlreader.Locator.getLineNumber()

Locator.getLineNumber() Return the line number where the current event begins.

gc.garbage

gc.garbage A list of objects which the collector found to be unreachable but could not be freed (uncollectable objects). Starting with Python 3.4, this list should be empty most of the time, except when using instances of C extension types with a non-NULL tp_del slot. If DEBUG_SAVEALL is set, then all unreachable objects will be added to this list rather than freed. Changed in version 3.2: If this list is non-empty at interpreter shutdown, a ResourceWarning is emitted, which is silent by de

str.ljust()

str.ljust(width[, fillchar]) Return the string left justified in a string of length width. Padding is done using the specified fillchar (default is an ASCII space). The original string is returned if width is less than or equal to len(s).

logging.exception()

logging.exception(msg, *args, **kwargs) Logs a message with level ERROR on the root logger. The arguments are interpreted as for debug(). Exception info is added to the logging message. This function should only be called from an exception handler.

email.policy.EmailPolicy.header_max_count()

header_max_count(name) Returns the value of the max_count attribute of the specialized class used to represent the header with the given name.

pipes.Template.append()

Template.append(cmd, kind) Append a new action at the end. The cmd variable must be a valid bourne shell command. The kind variable consists of two letters. The first letter can be either of '-' (which means the command reads its standard input), 'f' (which means the commands reads a given file on the command line) or '.' (which means the commands reads no input, and hence must be first.) Similarly, the second letter can be either of '-' (which means the command writes to standard output), '

imaplib.IMAP4.recent()

IMAP4.recent() Prompt server for an update. Returned data is None if no new messages, else value of RECENT response.

math.nan

math.nan A floating-point “not a number” (NaN) value. Equivalent to the output of float('nan'). New in version 3.5.