Skip to content

Commit 78d6d6b

Browse files
committed
added comment
1 parent bbc824d commit 78d6d6b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/_arraykit.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -836,7 +836,7 @@ AK_UCS4_to_int64(Py_UCS4 *p_item, Py_UCS4 *end, int *error, char tsep)
836836

837837
while (AK_is_space(*p)) {
838838
++p;
839-
if (p >= end) return number;
839+
if (p >= end) return number; // NOTE: this means that all space will return zero without error
840840
}
841841
if (*p == '-') {
842842
isneg = 1;

0 commit comments

Comments
 (0)