asyncio.Server

class asyncio.Server Server listening on sockets. Object created by the AbstractEventLoop.create_server() method and the start_server() function. Don’t instantiate the class directly. close() Stop serving: close listening sockets and set the sockets attribute to None. The sockets that represent existing incoming client connections are left open. The server is closed asynchronously, use the wait_closed() coroutine to wait until the server is closed. coroutine wait_closed() Wait until

tracemalloc.Frame.filename

filename Filename (str).

gettext.GNUTranslations.gettext()

GNUTranslations.gettext(message) Look up the message id in the catalog and return the corresponding message string, as a Unicode string. If there is no entry in the catalog for the message id, and a fallback has been set, the look up is forwarded to the fallback’s gettext() method. Otherwise, the message id is returned.

io.BytesIO.getvalue()

getvalue() Return bytes containing the entire contents of the buffer.

telnetlib.Telnet.read_very_lazy()

Telnet.read_very_lazy() Return any data available in the cooked queue (very lazy). Raise EOFError if connection closed and no data available. Return b'' if no cooked data available otherwise. This method never blocks.

unittest.TestSuite.addTests()

addTests(tests) Add all the tests from an iterable of TestCase and TestSuite instances to this test suite. This is equivalent to iterating over tests, calling addTest() for each element.

numbers.Complex.real

real Abstract. Retrieves the real component of this number.

datetime.time.isoformat()

time.isoformat() Return a string representing the time in ISO 8601 format, HH:MM:SS.mmmmmm or, if self.microsecond is 0, HH:MM:SS If utcoffset() does not return None, a 6-character string is appended, giving the UTC offset in (signed) hours and minutes: HH:MM:SS.mmmmmm+HH:MM or, if self.microsecond is 0, HH:MM:SS+HH:MM

mimetypes.inited

mimetypes.inited Flag indicating whether or not the global data structures have been initialized. This is set to True by init().

syslog.setlogmask()

syslog.setlogmask(maskpri) Set the priority mask to maskpri and return the previous mask value. Calls to syslog() with a priority level not set in maskpri are ignored. The default is to log all priorities. The function LOG_MASK(pri) calculates the mask for the individual priority pri. The function LOG_UPTO(pri) calculates the mask for all priorities up to and including pri.