We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 12bad6e commit 4201bbcCopy full SHA for 4201bbc
unpythonic/syntax/ifexprs.py
@@ -25,6 +25,7 @@ def aif(tree):
25
test, then, otherwise = [implicit_do(x) for x in tree.elts]
26
bindings = [q[(it, a[test])]]
27
body = q[a[then] if it else a[otherwise]]
28
+ # TODO: we should use a hygienically captured macro here.
29
return let(bindings, body)
30
31
def cond(tree):
0 commit comments