jborean93 / pykrb5

Python krb5 API interface
MIT License
17 stars 8 forks source link

Declare the function as noexcept when it is not raising exception. #27

Closed matusvalo closed 1 year ago

matusvalo commented 1 year ago

Cython 3 will require noexcept keyword in the declaraction of the function not raising an exceptions. See https://cython.readthedocs.io/en/latest/src/userguide/migrating_to_cy30.html#exception-values-and-noexcept

Fixes #26

jborean93 commented 1 year ago

Thanks for the fix here!