urllib.error.URLError.reason

reason The reason for this error. It can be a message string or another exception instance.

email.utils.parsedate()

email.utils.parsedate(date) Attempts to parse a date according to the rules in RFC 2822. however, some mailers don’t follow that format as specified, so parsedate() tries to guess correctly in such cases. date is a string containing an RFC 2822 date, such as "Mon, 20 Nov 1995 19:12:08 -0500". If it succeeds in parsing the date, parsedate() returns a 9-tuple that can be passed directly to time.mktime(); otherwise None will be returned. Note that indexes 6, 7, and 8 of the result tuple are not

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.

xml.parsers.expat.xmlparser.ProcessingInstructionHandler()

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

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.

socketserver.ThreadingTCPServer

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

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.

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.

ossaudiodev.OSSAudioError

exception ossaudiodev.OSSAudioError This exception is raised on certain errors. The argument is a string describing what went wrong. (If ossaudiodev receives an error from a system call such as open(), write(), or ioctl(), it raises OSError. Errors detected directly by ossaudiodev result in OSSAudioError.) (For backwards compatibility, the exception class is also available as ossaudiodev.error.)

xml.sax.xmlreader.InputSource.getSystemId()

InputSource.getSystemId() Returns the system identifier of this InputSource.