(func)
| 3375 | func = _testcapi.docstring_with_signature_with_defaults |
| 3376 | |
| 3377 | def decorator(func): |
| 3378 | @functools.wraps(func) |
| 3379 | def wrapper(*args, **kwargs) -> int: |
| 3380 | return func(*args, **kwargs) |
| 3381 | return wrapper |
| 3382 | |
| 3383 | decorated_func = decorator(func) |
| 3384 |