(*args, **kwds)
| 540 | if maxsize == 0: |
| 541 | |
| 542 | def wrapper(*args, **kwds): |
| 543 | # No caching -- just a statistics update |
| 544 | nonlocal misses |
| 545 | misses += 1 |
| 546 | result = user_function(*args, **kwds) |
| 547 | return result |
| 548 | |
| 549 | elif maxsize is None: |
| 550 |
nothing calls this directly
no test coverage detected