For some newer versions of cython, it appears it requires explicitly specifying
noexcept but old versions of Cython 0.29.Z do not understand that attribute.
See: https://cython.readthedocs.io/en/latest/src/userguide/migrating_to_cy30.html#exception-values-and-noexcept
Signed-off-by: Patrick Donnelly <pdonnell@ibm.com>
(cherry picked from commit
90ac7409279d103f8811cf31f3a530d8fff7ba12)
+# cython: language_level=3
+# cython: legacy_implicit_noexcept=True
+
from libc.stdint cimport *
from types cimport *
+# cython: language_level=3
+# cython: legacy_implicit_noexcept=True
+
"""
This module is a thin wrapper around libcephfs.
"""