In Python 2.x, represents a Python `long` object. In Python 3.x, represents a Python `int` object. Both `PyInt` and `PyLong` refer to the same type on Python 3.x. You can usually avoid directly working with this type by using [ToPyObject](trait.ToPyObject.html) and [extract](struct.PyObject.html#method.extract) with the primitive Rust integer types.
| 53 | /// and [extract](struct.PyObject.html#method.extract) |
| 54 | /// with the primitive Rust integer types. |
| 55 | pub struct PyLong(PyObject); |
| 56 | pyobject_newtype!(PyLong, PyLong_Check, PyLong_Type); |
| 57 | |
| 58 | /// Represents a Python `float` object. |
nothing calls this directly
no outgoing calls
no test coverage detected