Skip to content

Commit 5445a4a

Browse files
authored
csv: update for py313 (#11979)
1 parent 4488701 commit 5445a4a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

stdlib/csv.pyi

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,6 @@ __all__ = [
4040
"QUOTE_NONE",
4141
"Error",
4242
"Dialect",
43-
"__doc__",
4443
"excel",
4544
"excel_tab",
4645
"field_size_limit",
@@ -51,13 +50,14 @@ __all__ = [
5150
"list_dialects",
5251
"Sniffer",
5352
"unregister_dialect",
54-
"__version__",
5553
"DictReader",
5654
"DictWriter",
5755
"unix_dialect",
5856
]
5957
if sys.version_info >= (3, 12):
6058
__all__ += ["QUOTE_STRINGS", "QUOTE_NOTNULL"]
59+
if sys.version_info < (3, 13):
60+
__all__ += ["__doc__", "__version__"]
6161

6262
_T = TypeVar("_T")
6363

0 commit comments

Comments
 (0)