Kaydet (Commit) 4fe519bf authored tarafından Victor Stinner's avatar Victor Stinner

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

üst 132ef6cc
......@@ -248,7 +248,7 @@ _set_str(const char *name, PyObject **target, PyObject *src, const char *dflt)
static int
dialect_check_quoting(int quoting)
{
StyleDesc *qs = quote_styles;
StyleDesc *qs;
for (qs = quote_styles; qs->name; qs++) {
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