Skip to content

Commit 8831676

Browse files
committed
Fix channel bindings type signature
Cython 0.22 didn't like that we didn't have the `except NULL` clause on the `__cvalue__` method in `ChannelBindings` in the .pxd file. This adds the clause to the .pxd file.
1 parent 0e6f3fa commit 8831676

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

gssapi/raw/chan_bindings.pxd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,4 @@ cdef class ChannelBindings:
1111

1212
cdef public bytes application_data
1313

14-
cdef gss_channel_bindings_t __cvalue__(ChannelBindings self)
14+
cdef gss_channel_bindings_t __cvalue__(ChannelBindings self) except NULL

0 commit comments

Comments
 (0)