http.client.IncompleteRead

exception http.client.IncompleteRead A subclass of HTTPException.

bdb.Breakpoint.bpprint()

bpprint(out=None) Print the output of bpformat() to the file out, or if it is None, to standard output.

definition.__name__

definition.__name__ The name of the class, function, method, descriptor, or generator instance.

chunk.Chunk.getsize()

getsize() Returns the size of the chunk.

operator.xor()

operator.xor(a, b) operator.__xor__(a, b) Return the bitwise exclusive or of a and b.

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.

imaplib.IMAP4.socket()

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

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.

operator.__add__()

operator.__add__(a, b) Return a + b, for a and b numbers.