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.
1 parent 495f808 commit c12f978Copy full SHA for c12f978
pandas/_libs/tslibs/util.pxd
@@ -185,11 +185,11 @@ cdef inline const char* get_c_string(str py_string) except NULL:
185
return get_c_string_buf_and_size(py_string, NULL)
186
187
188
-cdef inline bytes string_encode_locale(str py_string) noexcept:
+cdef inline bytes string_encode_locale(str py_string):
189
"""As opposed to PyUnicode_Encode, use current system locale to encode."""
190
return PyUnicode_EncodeLocale(py_string, NULL)
191
192
193
-cdef inline object char_to_string_locale(const char* data) noexcept:
+cdef inline object char_to_string_locale(const char* data):
194
"""As opposed to PyUnicode_FromString, use current system locale to decode."""
195
return PyUnicode_DecodeLocale(data, NULL)
0 commit comments