You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
`mcpyrate` does not need to rename hygienically captured values, so the name
will always match exactly.
If the use site needs something more complex, `isx` already supports that:
just pass a predicate instead of a string as the name to be detected.
Copy file name to clipboardExpand all lines: unpythonic/syntax/__init__.py
-1Lines changed: 0 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -89,7 +89,6 @@
89
89
# However, 0.15.0 is the initial version that runs on `mcpyrate`, and the focus is to just get this running.
90
90
# Cleanups can be done in a future release.
91
91
92
-
# TODO: `make_isxpred` is now obsolete because `mcpyrate` does not rename hygienic captures of run-time values. Make it explicit at the use sites what they want, and remove `make_isxpred`. (E.g. `curry` wants to match both `curryf` and `currycall`, exactly. Some use sites want to match only a single thing.)
93
92
94
93
# TODO: `let` constructs: document difference to Python 3.8 walrus operator (`let` creates a scope, `:=` doesn't)
0 commit comments