Kartik Singhal
Kartik Singhal
The fix seems to be, at least for LLVM 15 zstd issue, to include the following in `~/.cargo/config.toml`: ```toml [build] rustflags = ["-L", "/opt/homebrew/lib/"] ```
I just tried installing wasmer-python 1.2.0 directly from master. It seems to work fine on my M2 machine. Can we expect a release soon? @ayys
I wish the consideration for match-case statement for PLR rules was configurable to be turned off with lint.pylint setting. Long match-case statements are very common while walking abstract syntax trees...
The only thing to add is there is no simpler way to process an enumeration than pattern matching (such as those that show up in AST walks as mentioned) and...
I think it might be easier to share intent if we replace "global" with "extern"/ "external", e.g., `ExternSymbol`.
I think the docs for `pyright` are severely lacking. We gave up on `pyright` for the L3 compiler for this reason and moved to `mypy`.
> If we are considering guppy as a strongly typed language, I think `bool` should not be implicitly treated as a numeric type. We could certainly provide casting/conversion functions for...
@TheDan64 would you be willing to make a new release with this PR included?
> ```python > class Test: > pass > > class Test: > x: int > ``` @mark-koch Is this even valid code? Certainly not desirable. Shouldn't we just disallow a...
related #445