-
Could maybe be added to `flake8-simplify`.
```py
my_var = 42_000
# bad (if target=py3.8+)
f"my_var={my_var}"
f"my_var = {my_var}"
f"my_var = {my_var:,}"
# good
f"{my_var=}"
f"{my_var = …
-
This happens at Master and the 0.7.pre4 tarball.
**Ion**
In most cases you'll need to compile Ion yourself, almost all distro packages are horribly out-of-date: https://gitlab.redox-os.org/redox-os/…
-
### System Details
- OpenBSD 7.5 GENERIC.MP#138 arm64
- oils-for-unix release tarball 0.21.0
### Error
The compiler starts erroring due to some missing symbols related to readline.
```
C…
-
### The road to a custom parser
As we have discussed this at lengths as parts of weekly calls, this is the proposed road map to swap out the current python standard library. Also lots of discussion…
-
One of the places where pattern matching can shine is operating on ASTs. So it would be really useful to have good support `ast` classes from the start. And it shouldn't be really hard: all AST classe…
-
> Do you know roughly how much test coverage ble.sh has? That is, is it closer to 10%, 50%, or 80%?
There are (almost) no tests for `ble.sh`. My feeling is that only 5-10% is covered by the tests f…
-
Allow a conversion between Pyccel AST and LFortran ASR.
The latter is described as BNF grammar in
https://gitlab.com/lfortran/lfortran/blob/master/grammar/ASR.asdl
-
Currently the ASDL definition is:
```
StringContains(expr left, expr right, ttype type, expr? value)
```
And we should rename `left` to `substr` and `right` to `str`.
-
Love this project however when I try to run it, I get this error
PS: Running this in colab pro
---
2022-10-10 19:45:42.737414: E tensorflow/stream_executor/cuda/cuda_driver.cc:271] failed call …
-
There are two main issues with strings:
* Right now a lot of our string operations leak memory. We need to treat strings like allocatable arrays, which get automatically deallocated when they go ou…