|
|
|
|
|
by haikuginger
2728 days ago
|
|
> So... Because lists are dynamically typed and heterogeneous, does that mean the underlying C is basically a contiguous segment of memory of python object references? Yes. Every Python object is held by the interpreter as a pointer to a PyObject struct on the (C) heap. |
|