Add Iterable base class to csv.DictReader. Fixes #47.

This commit is contained in:
Guido van Rossum
2016-01-18 16:39:08 -08:00
parent c0377b6753
commit 2d82816e14
2 changed files with 3 additions and 3 deletions

View File

@@ -2,7 +2,7 @@
#
# NOTE: This dynamically typed stub was automatically generated by stubgen.
from typing import Any
from typing import Any, Iterable
QUOTE_ALL = ... # type: int
QUOTE_MINIMAL = ... # type: int
@@ -48,7 +48,7 @@ class unix_dialect(Dialect):
lineterminator = ... # type: Any
quoting = ... # type: Any
class DictReader:
class DictReader(Iterable):
restkey = ... # type: Any
restval = ... # type: Any
reader = ... # type: Any