Skip to content

Commit f713a3f

Browse files
committed
improve comment
1 parent 4e9fe0c commit f713a3f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

unpythonic/lazyutil.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ def maybe_force_args(f, *thunks, **kwthunks):
117117
If `not islazy(f)`, forces the given args and kwargs, and then calls `f` with them.
118118
If `islazy(f)`, calls `f` without forcing the args/kwargs.
119119
"""
120-
if f is jump: # special case to avoid drastic performance hit in strict code
120+
if f is jump: # special case to avoid drastic performance hit in TCO'd strict code
121121
target, *argthunks = thunks
122122
return jump(force1(target), *argthunks, **kwthunks)
123123
if islazy(f):

0 commit comments

Comments
 (0)