Support assignment expression for the universal target
Open
compatibility
- Dominant language
- Python
- Stars
- 4.4k
- Forks
- 142
- PR merge metrics
- No merged PRs in 30d
Description
A statement of the form
```python
(a := b)
```
Currently requires a Python 3.8 target, but could be compiled to
```python
a = b
(a)
```
in order to support any target.
Contributor guide
Assessment
This issue has not been assessed yet.