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 9c61918 commit 010a75bCopy full SHA for 010a75b
pandas/io/sas/sas.pyx
@@ -429,7 +429,7 @@ cdef class Parser:
429
# Skip trailing whitespace
430
while lngt > 0 and source[start+lngt-1] in b"\x00 ":
431
lngt -= 1
432
- string_chunk[js, current_row] = source[start:start+lngt]
+ string_chunk[js, current_row] = (&source[start])[:lngt]
433
js += 1
434
435
self.current_row_on_page_index += 1
0 commit comments