Commit 4fe519bf authored by Victor Stinner's avatar Victor Stinner

Issue #10359: Remove useless (duplicate) initialization in _csv

parent 132ef6cc
...@@ -248,7 +248,7 @@ _set_str(const char *name, PyObject **target, PyObject *src, const char *dflt) ...@@ -248,7 +248,7 @@ _set_str(const char *name, PyObject **target, PyObject *src, const char *dflt)
static int static int
dialect_check_quoting(int quoting) dialect_check_quoting(int quoting)
{ {
StyleDesc *qs = quote_styles; StyleDesc *qs;
for (qs = quote_styles; qs->name; qs++) { for (qs = quote_styles; qs->name; qs++) {
if (qs->style == quoting) if (qs->style == quoting)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment