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 ca32c01 commit 46c9883Copy full SHA for 46c9883
pandas/_libs/src/parser/tokenizer.c
@@ -1846,8 +1846,8 @@ int uint64_conflict(uint_state *self) {
1846
*
1847
* @param p_item Pointer to the string to validate for numeric format
1848
1849
- * @return Integer 0 if the remainder of the string contains only digits,
1850
- * otherwise returns the error code for [ERROR_INVALID_CHARS].
+ * @return TOKENIZER_OK if the remainder of the string contains only digits,
+ * otherwise returns ERROR_INVALID_CHARS.
1851
*/
1852
static inline TokenizerError check_for_invalid_char(const char *p_item) {
1853
while (*p_item != '\0' && isdigit_ascii(*p_item)) {
0 commit comments