File tree Expand file tree Collapse file tree 7 files changed +0
-42
lines changed Expand file tree Collapse file tree 7 files changed +0
-42
lines changed Original file line number Diff line number Diff line change @@ -101,11 +101,6 @@ Context object management functions:
101
101
current context for the current thread. Returns ``0 `` on success,
102
102
and ``-1 `` on error.
103
103
104
- .. c :function :: int PyContext_ClearFreeList ()
105
-
106
- Clear the context variable free list. Return the total number of
107
- freed items. This function always succeeds.
108
-
109
104
110
105
Context variable functions:
111
106
Original file line number Diff line number Diff line change @@ -232,10 +232,3 @@ Dictionary Objects
232
232
for key, value in seq2:
233
233
if override or key not in a:
234
234
a[key] = value
235
-
236
-
237
- .. c :function :: int PyDict_ClearFreeList ()
238
-
239
- Clear the free list. Return the total number of freed items.
240
-
241
- .. versionadded:: 3.3
Original file line number Diff line number Diff line change @@ -76,8 +76,3 @@ Floating Point Objects
76
76
.. c:function:: double PyFloat_GetMin()
77
77
78
78
Return the minimum normalized positive float *DBL_MIN* as C :c:type:`double`.
79
-
80
- .. c:function:: int PyFloat_ClearFreeList()
81
-
82
- Clear the float free list. Return the number of items that could not
83
- be freed.
Original file line number Diff line number Diff line change @@ -142,10 +142,3 @@ List Objects
142
142
143
143
Return a new tuple object containing the contents of *list *; equivalent to
144
144
``tuple(list) ``.
145
-
146
-
147
- .. c :function :: int PyList_ClearFreeList ()
148
-
149
- Clear the free list. Return the total number of freed items.
150
-
151
- .. versionadded:: 3.3
Original file line number Diff line number Diff line change @@ -92,9 +92,3 @@ no longer available.
92
92
.. c :function :: PyObject* PyMethod_GET_SELF (PyObject *meth)
93
93
94
94
Macro version of :c:func: `PyMethod_Self ` which avoids error checking.
95
-
96
-
97
- .. c :function :: int PyMethod_ClearFreeList ()
98
-
99
- Clear the free list. Return the total number of freed items.
100
-
Original file line number Diff line number Diff line change @@ -157,10 +157,3 @@ subtypes but not for instances of :class:`frozenset` or its subtypes.
157
157
.. c :function :: int PySet_Clear (PyObject *set)
158
158
159
159
Empty an existing set of all elements.
160
-
161
-
162
- .. c :function :: int PySet_ClearFreeList ()
163
-
164
- Clear the free list. Return the total number of freed items.
165
-
166
- .. versionadded:: 3.3
Original file line number Diff line number Diff line change @@ -111,11 +111,6 @@ Tuple Objects
111
111
raises :exc: `MemoryError ` or :exc: `SystemError `.
112
112
113
113
114
- .. c :function :: int PyTuple_ClearFreeList ()
115
-
116
- Clear the free list. Return the total number of freed items.
117
-
118
-
119
114
Struct Sequence Objects
120
115
-----------------------
121
116
You can’t perform that action at this time.
0 commit comments