Skip to content

Commit ef5a66e

Browse files
committed
amend! amend! amend! Partially revert 74e2acd
Partially revert 74e2acd This restores Modules/_testclinic.c to match the same file in the 3.14 branch.
1 parent 523e247 commit ef5a66e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Lib/test/test_clinic.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2979,7 +2979,7 @@ def check_depr_star(self, pnames, fn, /, *args, name=None, **kwds):
29792979
regex = (
29802980
fr"Passing( more than)?( [0-9]+)? positional argument(s)? to "
29812981
fr"{re.escape(name)}\(\) is deprecated. Parameters? {pnames} will "
2982-
fr"become( a)? keyword-only parameters? in Python 3\.37"
2982+
fr"become( a)? keyword-only parameters? in Python 3\.14"
29832983
)
29842984
self.check_depr(regex, fn, *args, **kwds)
29852985

@@ -2992,7 +2992,7 @@ def check_depr_kwd(self, pnames, fn, *args, name=None, **kwds):
29922992
regex = (
29932993
fr"Passing keyword argument{pl} {pnames} to "
29942994
fr"{re.escape(name)}\(\) is deprecated. Parameter{pl} {pnames} "
2995-
fr"will become positional-only in Python 3\.37."
2995+
fr"will become positional-only in Python 3\.14."
29962996
)
29972997
self.check_depr(regex, fn, *args, **kwds)
29982998

0 commit comments

Comments
 (0)