current context for the current thread. Returns ``0`` on success,
and ``-1`` on error.
-.. c:function:: int PyContext_ClearFreeList()
-
- Clear the context variable free list. Return the total number of
- freed items. This function always succeeds.
-
Context variable functions:
for key, value in seq2:
if override or key not in a:
a[key] = value
-
-
-.. c:function:: int PyDict_ClearFreeList()
-
- Clear the free list. Return the total number of freed items.
-
- .. versionadded:: 3.3
.. c:function:: double PyFloat_GetMin()
Return the minimum normalized positive float *DBL_MIN* as C :c:type:`double`.
-
-.. c:function:: int PyFloat_ClearFreeList()
-
- Clear the float free list. Return the number of items that could not
- be freed.
Return a new tuple object containing the contents of *list*; equivalent to
``tuple(list)``.
-
-
-.. c:function:: int PyList_ClearFreeList()
-
- Clear the free list. Return the total number of freed items.
-
- .. versionadded:: 3.3
.. c:function:: PyObject* PyMethod_GET_SELF(PyObject *meth)
Macro version of :c:func:`PyMethod_Self` which avoids error checking.
-
-
-.. c:function:: int PyMethod_ClearFreeList()
-
- Clear the free list. Return the total number of freed items.
-
.. c:function:: int PySet_Clear(PyObject *set)
Empty an existing set of all elements.
-
-
-.. c:function:: int PySet_ClearFreeList()
-
- Clear the free list. Return the total number of freed items.
-
- .. versionadded:: 3.3
raises :exc:`MemoryError` or :exc:`SystemError`.
-.. c:function:: int PyTuple_ClearFreeList()
-
- Clear the free list. Return the total number of freed items.
-
-
Struct Sequence Objects
-----------------------