pathlib.PosixPath

class pathlib.PosixPath(*pathsegments) A subclass of Path and PurePosixPath, this class represents concrete non-Windows filesystem paths: >>> PosixPath('/etc') PosixPath('/etc') pathsegments is specified similarly to PurePath.

struct.unpack()

struct.unpack(fmt, buffer) Unpack from the buffer buffer (presumably packed by pack(fmt, ...)) according to the format string fmt. The result is a tuple even if it contains exactly one item. The buffer’s size in bytes must match the size required by the format, as reflected by calcsize().

wsgiref.handlers.BaseHandler._write()

_write(data) Buffer the bytes data for transmission to the client. It’s okay if this method actually transmits the data; BaseHandler just separates write and flush operations for greater efficiency when the underlying system actually has such a distinction.

ctypes.cast()

ctypes.cast(obj, type) This function is similar to the cast operator in C. It returns a new instance of type which points to the same memory block as obj. type must be a pointer type, and obj must be an object that can be interpreted as a pointer.

http.cookiejar.Cookie.is_expired()

Cookie.is_expired(now=None) True if cookie has passed the time at which the server requested it should expire. If now is given (in seconds since the epoch), return whether the cookie has expired at the specified time.

imaplib.IMAP4.socket()

IMAP4.socket() Returns socket instance used to connect to server.

importlib.machinery.SourcelessFileLoader.load_module()

load_module(name=None)

turtle.begin_fill()

turtle.begin_fill() To be called just before drawing a shape to be filled.

operator.floordiv()

operator.floordiv(a, b) operator.__floordiv__(a, b) Return a // b.

asyncio.AbstractEventLoop.create_connection()

coroutine AbstractEventLoop.create_connection(protocol_factory, host=None, port=None, *, ssl=None, family=0, proto=0, flags=0, sock=None, local_addr=None, server_hostname=None) Create a streaming transport connection to a given Internet host and port: socket family AF_INET or AF_INET6 depending on host (or family if specified), socket type SOCK_STREAM. protocol_factory must be a callable returning a protocol instance. This method is a coroutine which will try to establish the connection in t