string.punctuation

string.punctuation String of ASCII characters which are considered punctuation characters in the C locale.

os.path.getsize()

os.path.getsize(path) Return the size, in bytes, of path. Raise OSError if the file does not exist or is inaccessible.

tarfile.TarInfo.gid

TarInfo.gid Group ID of the user who originally stored this member.

ctypes.c_wchar_p

class ctypes.c_wchar_p Represents the C wchar_t * datatype, which must be a pointer to a zero-terminated wide character string. The constructor accepts an integer address, or a string.

os.writev()

os.writev(fd, buffers) Write the contents of buffers to file descriptor fd. buffers must be a sequence of bytes-like objects. Buffers are processed in array order. Entire contents of first buffer is written before proceeding to second, and so on. The operating system may set a limit (sysconf() value SC_IOV_MAX) on the number of buffers that can be used. writev() writes the contents of each object to the file descriptor and returns the total number of bytes written. Availability: Unix. New i

xml.sax.xmlreader.InputSource.getPublicId()

InputSource.getPublicId() Returns the public identifier of this InputSource.

delattr()

delattr(object, name) This is a relative of setattr(). The arguments are an object and a string. The string must be the name of one of the object’s attributes. The function deletes the named attribute, provided the object allows it. For example, delattr(x, 'foobar') is equivalent to del x.foobar.

timeit.default_timer()

timeit.default_timer() The default timer, which is always time.perf_counter(). Changed in version 3.3: time.perf_counter() is now the default timer.

str.partition()

str.partition(sep) Split the string at the first occurrence of sep, and return a 3-tuple containing the part before the separator, the separator itself, and the part after the separator. If the separator is not found, return a 3-tuple containing the string itself, followed by two empty strings.

wsgiref.headers.Headers

class wsgiref.headers.Headers([headers]) Create a mapping-like object wrapping headers, which must be a list of header name/value tuples as described in PEP 3333. The default value of headers is an empty list. Headers objects support typical mapping operations including __getitem__(), get(), __setitem__(), setdefault(), __delitem__() and __contains__(). For each of these methods, the key is the header name (treated case-insensitively), and the value is the first value associated with that he