http.cookies.Morsel.key

Morsel.key The name of the cookie. Deprecated since version 3.5: assigning to key; use set() instead.

sqlite3.Connection.isolation_level

isolation_level Get or set the current isolation level. None for autocommit mode or one of “DEFERRED”, “IMMEDIATE” or “EXCLUSIVE”. See section Controlling Transactions for a more detailed explanation.

curses.window.mvwin()

window.mvwin(new_y, new_x) Move the window so its upper-left corner is at (new_y, new_x).

ctypes.WINFUNCTYPE()

ctypes.WINFUNCTYPE(restype, *argtypes, use_errno=False, use_last_error=False) Windows only: The returned function prototype creates functions that use the stdcall calling convention, except on Windows CE where WINFUNCTYPE() is the same as CFUNCTYPE(). The function will release the GIL during the call. use_errno and use_last_error have the same meaning as above.

doctest.UnexpectedException.example

UnexpectedException.example The Example that failed.

ImportWarning

exception ImportWarning Base class for warnings about probable mistakes in module imports.

ctypes.c_longdouble

class ctypes.c_longdouble Represents the C long double datatype. The constructor accepts an optional float initializer. On platforms where sizeof(long double) == sizeof(double) it is an alias to c_double.

unittest.TestCase.defaultTestResult()

defaultTestResult() Return an instance of the test result class that should be used for this test case class (if no other result instance is provided to the run() method). For TestCase instances, this will always be an instance of TestResult; subclasses of TestCase should override this as necessary.

weakref.WeakSet

class weakref.WeakSet([elements]) Set class that keeps weak references to its elements. An element will be discarded when no strong reference to it exists any more.

textwrap.wrap()

textwrap.wrap(text, width=70, **kwargs) Wraps the single paragraph in text (a string) so every line is at most width characters long. Returns a list of output lines, without final newlines. Optional keyword arguments correspond to the instance attributes of TextWrapper, documented below. width defaults to 70. See the TextWrapper.wrap() method for additional details on how wrap() behaves.