MCPcopy Create free account
hub / github.com/dgrunwald/rust-cpython / PyList

Class PyList

src/objects/list.rs:26–26  ·  view source on GitHub ↗

Represents a Python `list`.

Source from the content-addressed store, hash-verified

24
25/// Represents a Python `list`.
26pub struct PyList(PyObject);
27
28pyobject_newtype!(PyList, PyList_Check, PyList_Type);
29

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected