Add csv.__version__ (#7357)

This commit is contained in:
Alex Waygood
2022-02-22 18:12:43 +00:00
committed by GitHub
parent 6fc4c14181
commit 22c3cc4d0b
3 changed files with 3 additions and 1 deletions

View File

@@ -1,6 +1,8 @@
from typing import Any, Iterable, Iterator, Protocol, Union
from typing_extensions import Literal
__version__: str
QUOTE_ALL: Literal[1]
QUOTE_MINIMAL: Literal[0]
QUOTE_NONE: Literal[3]