| 647 | } |
| 648 | |
| 649 | static PyObject * |
| 650 | ceph_lookup_release_name(BaseMgrModule *self, PyObject *args) |
| 651 | { |
| 652 | int major = 0; |
| 653 | if (!PyArg_ParseTuple(args, "i:ceph_lookup_release_name", &major)) { |
| 654 | return nullptr; |
| 655 | } |
| 656 | return PyUnicode_FromString(ceph_release_name(major)); |
| 657 | } |
| 658 | |
| 659 | static PyObject * |
| 660 | ceph_get_context(BaseMgrModule *self) |
nothing calls this directly
no test coverage detected