Represents an old-style Python instance. Only available with Python 2.x.
| 36 | /// |
| 37 | /// Only available with Python 2.x. |
| 38 | pub struct PyInstance(PyObject); |
| 39 | pyobject_newtype!(PyInstance, PyInstance_Check, PyInstance_Type); |
| 40 | |
| 41 | impl PyClass { |
nothing calls this directly
no outgoing calls
no test coverage detected