asyncio.Queue.full()

full() Return True if there are maxsize items in the queue. Note If the Queue was initialized with maxsize=0 (the default), then full() is never True.

msvcrt.putwch()

msvcrt.putwch(unicode_char) Wide char variant of putch(), accepting a Unicode value.

os.getpgrp()

os.getpgrp() Return the id of the current process group. Availability: Unix.

sys.version

sys.version A string containing the version number of the Python interpreter plus additional information on the build number and compiler used. This string is displayed when the interactive interpreter is started. Do not extract version information out of it, rather, use version_info and the functions provided by the platform module.

curses.window.standout()

window.standout() Turn on attribute A_STANDOUT.

tracemalloc.Filter.all_frames

all_frames If all_frames is True, all frames of the traceback are checked. If all_frames is False, only the most recent frame is checked. This attribute has no effect if the traceback limit is 1. See the get_traceback_limit() function and Snapshot.traceback_limit attribute.

sqlite3.Connection.execute()

execute(sql[, parameters]) This is a nonstandard shortcut that creates a cursor object by calling the cursor() method, calls the cursor’s execute() method with the parameters given, and returns the cursor.

tkinter.ttk.Treeview.tag_bind()

tag_bind(tagname, sequence=None, callback=None) Bind a callback for the given event sequence to the tag tagname. When an event is delivered to an item, the callbacks for each of the item’s tags option are called.

filecmp.dircmp.diff_files

diff_files Files which are in both a and b, whose contents differ according to the class’s file comparison operator.

email.message.Message.get()

get(name, failobj=None) Return the value of the named header field. This is identical to __getitem__() except that optional failobj is returned if the named header is missing (defaults to None).