Represents an old-style Python class. Only available with Python 2.x.
| 30 | /// |
| 31 | /// Only available with Python 2.x. |
| 32 | pub struct PyClass(PyObject); |
| 33 | pyobject_newtype!(PyClass, PyClass_Check, PyClass_Type); |
| 34 | |
| 35 | /// Represents an old-style Python instance. |
nothing calls this directly
no outgoing calls
no test coverage detected