samufi
samufi
- Delta Chat Core Version: 0.840.0-PREVIEW Windows - Expected behavior: Messages sent from DeltaChat do not show up in the inbox but rather in sent messages - Actual behavior: Messages...
**Is your feature request related to a problem? Please describe.** An important feature when solving mixed integer problems is to be able to suggest a good feasible solution. Some solvers...
### Bug description When building a "2D list of lists" data structure, calling `x = arr[0, 0][0]` fails, while `x = arr.__getitem__(0,0)[0]` works. Possibly related to #3212. ### Steps to...
### Bug description When using the results slot in a method necessary to implement a trait, the compiler complains that the trait is not implemented. ### Steps to reproduce This...
[Modular CLI]: Installation of PyPI package fails: Failed to fetch wheel / Unsupported archive type
### Issue description When I try to install the package `kdelikelihood` from PyPi in my magic environment, I receive the following error: ``` × failed to solve the pypi requirements...
### Bug description ### Actual behavior Programs encounter a segmentation fault if a struct conforms to the `KeyElement` trait explicitly. ### Expected behavior Conforming to the `KeyElement` trait explicitly should...
### Bug description ### Actual behavior When considering a Variant with a sufficiently large SIMD, segmentation faults occur in various situations. ### Expected behavior Everything should work fine without segfaults...
### Bug description When using a struct containing a sufficiently large SIMD as key in a Dict, a segmentation fault is encountered. ### Steps to reproduce Execute the following code:...
### Bug description ### Actual behavior When accessing elements of a dict, immutable references are returned regardless of whether the dict itself is mutable or not. ### Expected behavior If...
Mutable references are necessary if a mutable pointer into the dict needs to be created. This fixes #4695. Signed-off-by: Samuel M. Fischer