Skip to content
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions stdlib/_csv.pyi
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
from typing import Any, Iterable, Iterator, List, Protocol, Type, Union

# __version__ is deliberately not defined here or in _csv.pyi,
# as it appears to have been hardcoded at "1.0" for a very long time!

QUOTE_ALL: int
QUOTE_MINIMAL: int
QUOTE_NONE: int
Expand Down
3 changes: 3 additions & 0 deletions stdlib/csv.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,9 @@ if sys.version_info >= (3, 8):
else:
from collections import OrderedDict as _DictReadMapping

# __version__ is deliberately not defined here or in _csv.pyi,
# as it appears to have been hardcoded at "1.0" for a very long time!

_T = TypeVar("_T")

class excel(Dialect):
Expand Down