| 368 | static PyTypeObject PyRational_Type; |
| 369 | |
| 370 | static inline int |
| 371 | PyRational_Check(PyObject* object) { |
| 372 | return PyObject_IsInstance(object,(PyObject*)&PyRational_Type); |
| 373 | } |
| 374 | |
| 375 | static PyObject* |
| 376 | PyRational_FromRational(rational x) { |
no outgoing calls
no test coverage detected