Skip to content

Commit e0b8734

Browse files
author
Sylvain MARIE
committed
Merge branch 'py3124' of https://github.com/mgorny/python-makefun into feature/105_nox_cleanup
# Conflicts: # tests/test_partial_and_macros.py
2 parents 7bf5dc1 + 2383a5d commit e0b8734

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

tests/test_partial_and_macros.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@ def f(a, b, c, **d):
161161
# it is possible to keyword-partialize a positional-only argument...
162162
fp_ref = functools.partial(f, b=0)
163163

164-
# but 'signature' does not support it !
164+
# but 'signature' does not support it before Python 3.12.4 !
165165
if sys.version_info < (3, 12, 4):
166166
with pytest.raises(ValueError):
167167
signature(fp_ref)

0 commit comments

Comments
 (0)