Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8197a93 commit 10c98dbCopy full SHA for 10c98db
1 file changed
Include/cpython/listobject.h
@@ -26,7 +26,7 @@ PyAPI_FUNC(void) _PyList_DebugMallocStats(FILE *out);
26
27
/* Macro, trading safety for speed */
28
29
-/* Cast argument to PyTupleObject* type. */
+/* Cast argument to PyListObject* type. */
30
#define _PyList_CAST(op) (assert(PyList_Check(op)), (PyListObject *)(op))
31
32
#define PyList_GET_ITEM(op, i) (_PyList_CAST(op)->ob_item[i])
0 commit comments