Skip to content

Commit 043b44a

Browse files
committed
Fix stdlib stubtest for latest Python patch releases
1 parent 5803a55 commit 043b44a

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

stdlib/email/_header_value_parser.pyi

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,8 @@ SPECIALSNL: Final[set[str]]
2626
def make_quoted_pairs(value: Any) -> str: ...
2727
def quote_string(value: Any) -> str: ...
2828

29-
if sys.version_info >= (3, 13):
30-
# Added in Python 3.13.12, 3.14.3
31-
def make_parenthesis_pairs(value: Any) -> str: ...
29+
# Added in Python 3.13.12, 3.14.3, 3.12.13 3.11.15, 3.10.20
30+
def make_parenthesis_pairs(value: Any) -> str: ...
3231

3332
rfc2047_matcher: Final[Pattern[str]]
3433

0 commit comments

Comments
 (0)