xml.sax.xmlreader.XMLReader.getContentHandler()

XMLReader.getContentHandler() Return the current ContentHandler.

set.discard()

discard(elem) Remove element elem from the set if it is present.

base64.decodebytes()

base64.decodebytes(s) base64.decodestring(s) Decode the bytes-like object s, which must contain one or more lines of base64 encoded data, and return the decoded bytes. decodestring is a deprecated alias. New in version 3.1.

textwrap.TextWrapper.break_long_words

break_long_words (default: True) If true, then words longer than width will be broken in order to ensure that no lines are longer than width. If it is false, long words will not be broken, and some lines may be longer than width. (Long words will be put on a line by themselves, in order to minimize the amount by which width is exceeded.)

ctypes.Array._type_

_type_ Specifies the type of each element in the array.

oct()

oct(x) Convert an integer number to an octal string. The result is a valid Python expression. If x is not a Python int object, it has to define an __index__() method that returns an integer.

uu.Error

exception uu.Error Subclass of Exception, this can be raised by uu.decode() under various situations, such as described above, but also including a badly formatted header, or truncated input file.

audioop.getsample()

audioop.getsample(fragment, width, index) Return the value of sample index from the fragment.

os.stat_result.st_nlink

st_nlink Number of hard links.

mailbox.MHMessage.remove_sequence()

remove_sequence(sequence) Remove sequence from the list of sequences that include this message.