xml.dom.Document.createAttribute()

Document.createAttribute(name) Create and return an attribute node. This method does not associate the attribute node with any particular element. You must use setAttributeNode() on the appropriate Element object to use the newly created attribute instance.

http.cookiejar.CookiePolicy.netscape

CookiePolicy.netscape Implement Netscape protocol.

symtable.Symbol.is_assigned()

is_assigned() Return True if the symbol is assigned to in its block.

sqlite3.Row.keys()

keys() This method returns a list of column names. Immediately after a query, it is the first member of each tuple in Cursor.description.

email.charset.Charset.get_body_encoding()

get_body_encoding() Return the content transfer encoding used for body encoding. This is either the string quoted-printable or base64 depending on the encoding used, or it is a function, in which case you should call the function with a single argument, the Message object being encoded. The function should then set the Content-Transfer-Encoding header itself to whatever is appropriate. Returns the string quoted-printable if body_encoding is QP, returns the string base64 if body_encoding is B

urllib.request.DataHandler

class urllib.request.DataHandler Open data URLs. New in version 3.4.

os.fchown()

os.fchown(fd, uid, gid) Change the owner and group id of the file given by fd to the numeric uid and gid. To leave one of the ids unchanged, set it to -1. See chown(). As of Python 3.3, this is equivalent to os.chown(fd, uid, gid). Availability: Unix.

platform.release()

platform.release() Returns the system’s release, e.g. '2.2.0' or 'NT' An empty string is returned if the value cannot be determined.

bytearray.rjust()

bytearray.rjust(width[, fillbyte]) Return a copy of the object right justified in a sequence of length width. Padding is done using the specified fillbyte (default is an ASCII space). For bytes objects, the original sequence is returned if width is less than or equal to len(s). Note The bytearray version of this method does not operate in place - it always produces a new object, even if no changes were made.

typing.get_type_hints()

typing.get_type_hints(obj) Return type hints for a function or method object. This is often the same as obj.__annotations__, but it handles forward references encoded as string literals, and if necessary adds Optional[t] if a default value equal to None is set.