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 41c11df commit acbfaa0Copy full SHA for acbfaa0
1 file changed
Modules/_csv.c
@@ -1032,6 +1032,10 @@ Reader_iternext(PyObject *op)
1032
pos = 0;
1033
1034
while (pos < linelen) {
1035
+ /* For IN_FIELD and IN_QUOTED_FIELD states, optimize by finding
1036
+ * chunks of characters that can be processed together up to the
1037
+ * next special character (eg: delimiter, quote, escape).
1038
+ */
1039
switch (self->state) {
1040
case IN_FIELD:
1041
chunk_end = linelen;
0 commit comments