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

Class PyClass

src/objects/oldstyle.rs:32–32  ·  view source on GitHub ↗

Represents an old-style Python class. Only available with Python 2.x.

Source from the content-addressed store, hash-verified

30///
31/// Only available with Python 2.x.
32pub struct PyClass(PyObject);
33pyobject_newtype!(PyClass, PyClass_Check, PyClass_Type);
34
35/// Represents an old-style Python instance.

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected