This short PR adds basic support for for loops.
There are still some limitations:
no else body
iterated value must implement __getitem__, i.e. no support for __iter__ yet
same restrictions as for assignments apply to the target, e.g. no unpacking
breaks are not yet supported
This short PR adds basic support for `for` loops.
There are still some limitations:
- no `else` body
- iterated value must implement `__getitem__`, i.e. no support for `__iter__` yet
- same restrictions as for assignments apply to the target, e.g. no unpacking
- `break`s are not yet supported
Blocking a user prevents them from interacting with repositories, such as opening or commenting on pull requests or issues. Learn more about blocking a user.
This short PR adds basic support for
forloops.There are still some limitations:
elsebody__getitem__, i.e. no support for__iter__yetbreaks are not yet supported