commit | 4fe519bf8db535ec9de732fd74d472820d7deb75 | [log] [tgz] |
---|---|---|
author | Victor Stinner <victor.stinner@haypocalc.com> | Tue Nov 09 09:40:16 2010 +0000 |
committer | Victor Stinner <victor.stinner@haypocalc.com> | Tue Nov 09 09:40:16 2010 +0000 |
tree | ee2fd394f3a86f74c9227d8cf5323c789403c42f | |
parent | 132ef6cca3b52c1cbc09f0b5476254089e1a8bf5 [diff] |
Issue #10359: Remove useless (duplicate) initialization in _csv
diff --git a/Modules/_csv.c b/Modules/_csv.c index 4584abc..a749cec 100644 --- a/Modules/_csv.c +++ b/Modules/_csv.c
@@ -248,7 +248,7 @@ static int dialect_check_quoting(int quoting) { - StyleDesc *qs = quote_styles; + StyleDesc *qs; for (qs = quote_styles; qs->name; qs++) { if (qs->style == quoting)