Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 4fe519b

Browse files
author
Victor Stinner
committed
Issue #10359: Remove useless (duplicate) initialization in _csv
1 parent 132ef6c commit 4fe519b

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Modules/_csv.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -248,7 +248,7 @@ _set_str(const char *name, PyObject **target, PyObject *src, const char *dflt)
248248
static int
249249
dialect_check_quoting(int quoting)
250250
{
251-
StyleDesc *qs = quote_styles;
251+
StyleDesc *qs;
252252

253253
for (qs = quote_styles; qs->name; qs++) {
254254
if (qs->style == quoting)

0 commit comments

Comments
 (0)