Skip to content

Commit

Permalink
error: fixed cython/cython#6001
Browse files Browse the repository at this point in the history
  • Loading branch information
YoSTEALTH committed Feb 28, 2024
1 parent 2464b90 commit a6ad914
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/liburing/__init__.py
@@ -1,7 +1,7 @@
from dynamic_import import importer


__version__ = '2024.2.27'
__version__ = '2024.2.28'

importer(cache=True, exclude_dir='lib')
# - `importer()` helps this project manage all import needs. It auto scans for
Expand Down
2 changes: 1 addition & 1 deletion src/liburing/error.pxd
@@ -1,4 +1,4 @@
cpdef int trap_error(int no) nogil
cpdef int trap_error(int no) except -1 nogil
cdef void raise_error(signed int no=?)
cpdef void memory_error(object cls, str msg=?)
cpdef void index_error(object cls, unsigned int, str msg=?)
2 changes: 1 addition & 1 deletion src/liburing/error.pyx
Expand Up @@ -2,7 +2,7 @@ from libc.errno cimport errno
from libc.string cimport strerror


cpdef inline int trap_error(int no) nogil:
cpdef inline int trap_error(int no) except -1 nogil:
''' Trap Error
Type
Expand Down

0 comments on commit a6ad914

Please sign in to comment.