-
Notifications
You must be signed in to change notification settings - Fork 25
Issues: arxlang/astx
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Author
Label
Projects
Milestones
Assignee
Sort
Issues list
**Ellipsis**: Represents
...
(e.g., in slicing). Useful for slicing and type hints.
#205
opened Mar 3, 2025 by
xmnlab
**Starred**: Represents starred unpacking (e.g.,
*args
). Vital for variable-length arguments.
#203
opened Mar 3, 2025 by
xmnlab
**Compare**: Represents chained comparisons (e.g.,
x < y <= z
). More robust than BinaryOp
workarounds.
#201
opened Mar 3, 2025 by
xmnlab
**SetComp**: Represents set comprehensions (e.g.,
{x for x in range(5)}
). Cleaner than generic loops.
#197
opened Mar 3, 2025 by
xmnlab
**AsyncFor**: Represents asynchronous for loops (e.g.,
async for x in y:
). Key for async programming.
#196
opened Mar 3, 2025 by
xmnlab
**AugAssign**: Represents augmented assignment (e.g.,
x += 1
). Common operation missing dedicated support.
#195
opened Mar 3, 2025 by
xmnlab
ProTip!
Adding no:label will show everything without a label.