We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
nogil
noexcept
1 parent ab6a5c6 commit 16556ffCopy full SHA for 16556ff
numcodecs/_utils.pxd
@@ -8,14 +8,14 @@
8
from libc.stdint cimport uint8_t, uint32_t
9
10
11
-cdef inline void store_le32(uint8_t c[4], uint32_t i) nogil noexcept:
+cdef inline void store_le32(uint8_t c[4], uint32_t i) noexcept nogil:
12
c[0] = i & 0xFF
13
c[1] = (i >> 8) & 0xFF
14
c[2] = (i >> 16) & 0xFF
15
c[3] = (i >> 24) & 0xFF
16
17
18
-cdef inline uint32_t load_le32(const uint8_t c[4]) nogil noexcept:
+cdef inline uint32_t load_le32(const uint8_t c[4]) noexcept nogil:
19
return (
20
c[0] |
21
(c[1] << 8) |
0 commit comments