Erik Moqvist
Erik Moqvist
Failure: ``` shell $ arm-linux-musleabi-gcc -I. -c ipaddr.c -o libdill_la-ipaddr.o In file included from ipaddr.c:44: ipaddr.c: In function 'dill_ipaddr_remotes': dns/dns.h:1009:24: error: lvalue required as unary '&' operand 1009 | #define...
## What do these changes do? ## Are there changes in behavior for the user? ## Related issue number ## Checklist - [x] I think the code is well written...
Hello! As I don't use this project myself I have little interest in maintaining it. I think the best way forward is to invite collaborators that all maintain the project...
Below is the output from a short brainstorming session on introducing fuzzy testing as part of Simba. Will it be useful or just a time consuming activity nobody want to...
The regular expression module supports most commonly used regex syntax, but there are a few important parts missing. Those should be implemented. - Beginning (`'^'`) and end (`'$'`)of line. -...
Just to remember what is left to do. The list is by no means complete. **General** - More on function overloading. - More on operator overloading. - Slices/sublist/substring, `[begin:end:step]`. Should...
Imported trait with default method using global variable does not work. Must change transpiler to generate default trait methods when generating containing module, not adding to class and generate in...
**What did you do?** ```python @generic(T) def foo(a: T): pass @generic(T) def foo(a: T, b: T): pass def main(): foo[u8](1, 2) ``` **What did you expect to see?** Successful compilation....
```python from queue import Queue @trait class Message: pass def main(): queue = Queue[Message]() ```
Hi, nice job with the package! Is it possible to disable the animation/transition when changing theme? It is not very smooth on my PC. I would prefer an immediate transition....