-
Placeholder issue to discuss about extending selectors
- selectors on tags
- selectors based on history
- selectors for topology traversal
-
When the `Shader` class' `__del__` function is called, an exception occurs:
```
ImportError: sys.meta_path is None, Python is likely shutting down
```
Haven't had the time to investigate this …
-
The following types are missing tests for the operators required by the `Comparable` trait (`__le__`, `__ge__`, etc.):
- [x] `Int`: done in https://github.com/modularml/mojo/pull/3161
- [x] `IntL…
-
Update `dipdup.models.Model` class to get better representation in crash reports. Now it's just ``.
Bonus points: do the same for other classes commonly discovered in crash reports.
-
Hey all,
I know the README says it doesn't make sense to use `django-stubs` without mypy, because mypy uses a plugin for cases where type hints alone don't work. Sorry if this question is a waste o…
-
_Merges 1823-add-solution-comparison-tool -> develop_
Closes #1823
-
When using mpfrs at high precision (> 2 ** 30 bits) algorithms fail. I have verified that mpfr works as expected using a C++ wrapper and test pi agm code. Using very similar code with gmpy, the code…
-
A mistake I've seen several times is to write `raise NotImplemented` rather than `raise NotImplementedError`. mypy is silent about this bug:
```
$ mypy --version
mypy 0.630
$ cat example.py
def f…
-
### Review Mojo's priorities
- [X] I have read the [roadmap and priorities](https://docs.modular.com/mojo/roadmap.html#overall-priorities) and I believe this request falls within the priorities.
…
-
Type families are a hack. I would like to make them more elegant.
I want to define a class `Family` which expects that inheriting classes will have inner classes `Bit` and `BitVector`, then automa…