evhub / evhub/coconut

Support assignment expression for the universal target

Open
#489 1 comment 0 reactions 0 assignees View on GitHub
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

Open the contributing guide

Assessment

This issue has not been assessed yet.

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.