| 601 | } |
| 602 | |
| 603 | static int |
| 604 | pyrational_nonzero(PyObject* self) { |
| 605 | rational x = ((PyRational*)self)->r; |
| 606 | return rational_nonzero(x); |
| 607 | } |
| 608 | |
| 609 | static PyNumberMethods pyrational_as_number = { |
| 610 | pyrational_add, /* nb_add */ |
nothing calls this directly
no test coverage detected