Skip to content

Commit 17b5088

Browse files
committed
Disambiguate a comment
1 parent 4283fba commit 17b5088

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Lib/functools.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -912,7 +912,7 @@ def _get_dispatch_param(func, *, _insideclass=False):
912912
import inspect
913913
try:
914914
param = list(inspect.signature(func).parameters.values())[idx]
915-
if param.kind < 3: # (*, arg) or (**args)
915+
if param.kind < 3: # Discard (*, arg) and (**args)
916916
return param.name
917917
except IndexError:
918918
pass

0 commit comments

Comments
 (0)