decimal.Decimal.logb()

logb(context=None) For a nonzero number, return the adjusted exponent of its operand as a Decimal instance. If the operand is a zero then Decimal('-Infinity') is returned and the DivisionByZero flag is raised. If the operand is an infinity then Decimal('Infinity') is returned.

tkinter.tix.Select

class tkinter.tix.Select The Select widget is a container of button subwidgets. It can be used to provide radio-box or check-box style of selection options for the user.

sqlite3.Connection.executemany()

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

threading.Condition.notify_all()

notify_all() Wake up all threads waiting on this condition. This method acts like notify(), but wakes up all waiting threads instead of one. If the calling thread has not acquired the lock when this method is called, a RuntimeError is raised.

asyncio.BaseSubprocessTransport.send_signal()

send_signal(signal) Send the signal number to the subprocess, as in subprocess.Popen.send_signal().

datetime.time.second

time.second In range(60).

os.path.splitunc()

os.path.splitunc(path) Deprecated since version 3.1: Use splitdrive instead. Split the pathname path into a pair (unc, rest) so that unc is the UNC mount point (such as r'\\host\mount'), if present, and rest the rest of the path (such as r'\path\file.ext'). For paths containing drive letters, unc will always be the empty string. Availability: Windows.

xml.sax.handler.feature_external_pes

xml.sax.handler.feature_external_pes value: "http://xml.org/sax/features/external-parameter-entities" true: Include all external parameter entities, including the external DTD subset. false: Do not include any external parameter entities, even the external DTD subset. access: (parsing) read-only; (not parsing) read/write

os.path.getctime()

os.path.getctime(path) Return the system’s ctime which, on some systems (like Unix) is the time of the last metadata change, and, on others (like Windows), is the creation time for path. The return value is a number giving the number of seconds since the epoch (see the time module). Raise OSError if the file does not exist or is inaccessible.

os.initgroups()

os.initgroups(username, gid) Call the system initgroups() to initialize the group access list with all of the groups of which the specified username is a member, plus the specified group id. Availability: Unix. New in version 3.2.