doctest.DocTest.examples

examples A list of Example objects encoding the individual interactive Python examples that should be run by this test.

PermissionError

exception PermissionError Raised when trying to run an operation without the adequate access rights - for example filesystem permissions. Corresponds to errno EACCES and EPERM.

selectors.DevpollSelector

class selectors.DevpollSelector select.devpoll()-based selector. fileno() This returns the file descriptor used by the underlying select.devpoll() object. New in version 3.5.

nntplib.NNTP.getwelcome()

NNTP.getwelcome() Return the welcome message sent by the server in reply to the initial connection. (This message sometimes contains disclaimers or help information that may be relevant to the user.)

os.setreuid()

os.setreuid(ruid, euid) Set the current process’s real and effective user ids. Availability: Unix.

imaplib.IMAP4.debug

IMAP4.debug Integer value to control debugging output. The initialize value is taken from the module variable Debug. Values greater than three trace each command.

mailbox.Error

exception mailbox.Error The based class for all other module-specific exceptions.

logging.handlers.SocketHandler.close()

close() Closes the socket.

asyncio.Queue

class asyncio.Queue(maxsize=0, *, loop=None) A queue, useful for coordinating producer and consumer coroutines. If maxsize is less than or equal to zero, the queue size is infinite. If it is an integer greater than 0, then yield from put() will block when the queue reaches maxsize, until an item is removed by get(). Unlike the standard library queue, you can reliably know this Queue’s size with qsize(), since your single-threaded asyncio application won’t be interrupted between calling qsize

bdb.effective()

bdb.effective(file, line, frame) Determine if there is an effective (active) breakpoint at this line of code. Return a tuple of the breakpoint and a boolean that indicates if it is ok to delete a temporary breakpoint. Return (None, None) if there is no matching breakpoint.