@@ -303,19 +303,19 @@ PandasParser_IMPORT
303
303
# cdef extern'ed declarations seem to leave behind an undefined symbol
304
304
cdef double xstrtod_wrapper(const char * p, char ** q, char decimal,
305
305
char sci, char tsep, int skip_trailing,
306
- int * error, int * maybe_int) nogil:
306
+ int * error, int * maybe_int) noexcept nogil:
307
307
return xstrtod(p, q, decimal, sci, tsep, skip_trailing, error, maybe_int)
308
308
309
309
310
310
cdef double precise_xstrtod_wrapper(const char * p, char ** q, char decimal,
311
311
char sci, char tsep, int skip_trailing,
312
- int * error, int * maybe_int) nogil:
312
+ int * error, int * maybe_int) noexcept nogil:
313
313
return precise_xstrtod(p, q, decimal, sci, tsep, skip_trailing, error, maybe_int)
314
314
315
315
316
316
cdef double round_trip_wrapper(const char * p, char ** q, char decimal,
317
317
char sci, char tsep, int skip_trailing,
318
- int * error, int * maybe_int) nogil:
318
+ int * error, int * maybe_int) noexcept nogil:
319
319
return round_trip(p, q, decimal, sci, tsep, skip_trailing, error, maybe_int)
320
320
321
321
0 commit comments