| 890 | /* PyBool_FromLong for old Pythons */ |
| 891 | #if PY_VERSION_HEX < 0x02030000 |
| 892 | static |
| 893 | PyObject *PyBool_FromLong(long ok) |
| 894 | { |
| 895 | PyObject *result = ok ? Py_True : Py_False; |
| 896 | Py_INCREF(result); |
| 897 | return result; |
| 898 | } |
| 899 | #endif |
| 900 | |
| 901 | /* Py_ssize_t for old Pythons */ |
no outgoing calls
no test coverage detected