Represents a Python `float` object. You can usually avoid directly working with this type by using [ToPyObject](trait.ToPyObject.html) and [extract](struct.PyObject.html#method.extract) with `f32`/`f64`.
| 62 | /// and [extract](struct.PyObject.html#method.extract) |
| 63 | /// with `f32`/`f64`. |
| 64 | pub struct PyFloat(PyObject); |
| 65 | pyobject_newtype!(PyFloat, PyFloat_Check, PyFloat_Type); |
| 66 | |
| 67 | #[cfg(feature = "python27-sys")] |
nothing calls this directly
no outgoing calls
no test coverage detected