You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There is a discrepancy between the ext_dce.pyx and ext_dce.pyi file. The pyi file has the mic_token but the pyx is missing it.
This leads to a runtime error when the pyx gets used in here.
.tox/py312-unit/lib/python3.12/site-packages/gssapi/raw/__init__.py:118: in <module>
from gssapi.raw.ext_iov_mic import * # noqa
gssapi/raw/ext_iov_mic.pyx:31: in init gssapi.raw.ext_iov_mic
???
E AttributeError: type object 'IOVBufferType' has no attribute 'mic_token'
If the pyi gets used instead it works.
The text was updated successfully, but these errors were encountered:
Can you share what platform you build this library, what Python version, etc. The .pyi file is only used for type annotations and not actually run at runtime. The mic_token should have been loaded into the IOVBufferType when importing the _enum_extensions
There is a discrepancy between the ext_dce.pyx and ext_dce.pyi file. The pyi file has the mic_token but the pyx is missing it.
This leads to a runtime error when the pyx gets used in here.
gssapi/raw/init.py
If the pyi gets used instead it works.
The text was updated successfully, but these errors were encountered: