mirror of
https://github.com/davidhalter/typeshed.git
synced 2026-01-23 19:41:51 +08:00
Add __all__ for modules beginning with 'c' and 'd' (#7303)
This commit is contained in:
@@ -26,6 +26,30 @@ if sys.version_info >= (3, 8):
|
||||
else:
|
||||
from collections import OrderedDict as _DictReadMapping
|
||||
|
||||
__all__ = [
|
||||
"QUOTE_MINIMAL",
|
||||
"QUOTE_ALL",
|
||||
"QUOTE_NONNUMERIC",
|
||||
"QUOTE_NONE",
|
||||
"Error",
|
||||
"Dialect",
|
||||
"__doc__",
|
||||
"excel",
|
||||
"excel_tab",
|
||||
"field_size_limit",
|
||||
"reader",
|
||||
"writer",
|
||||
"register_dialect",
|
||||
"get_dialect",
|
||||
"list_dialects",
|
||||
"Sniffer",
|
||||
"unregister_dialect",
|
||||
"__version__",
|
||||
"DictReader",
|
||||
"DictWriter",
|
||||
"unix_dialect",
|
||||
]
|
||||
|
||||
_T = TypeVar("_T")
|
||||
|
||||
class excel(Dialect):
|
||||
|
||||
Reference in New Issue
Block a user