Skip to content

Commit 325800f

Browse files
committed
use the xmas tree block macro ordering
1 parent 4723be4 commit 325800f

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

unpythonic/dialects/lispython.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ def transform_ast(self, tree): # tree is an ast.Module
3838
# Auxiliary syntax elements for the macros.
3939
from unpythonic.syntax import where, block, expr # noqa: F401, F811
4040
from unpythonic import cons, car, cdr, ll, llist, nil, prod, dyn # noqa: F401, F811
41-
with namedlambda, autoreturn, quicklambda, multilambda, tco:
41+
with autoreturn, quicklambda, multilambda, tco, namedlambda:
4242
__paste_here__ # noqa: F821, just a splicing marker.
4343
tree.body = splice_dialect(tree.body, template, "__paste_here__")
4444
return tree

0 commit comments

Comments
 (0)