-
**Bug Report**
A function that takes an argument of `Type[_E]` where `_E = TypeVar("_E", bound=Enum)` does not accept calling `iter` on that argument. Calling `iter` on a concrete enum class is acc…
-
### Initial Checks
- [X] I have searched GitHub for a duplicate issue and I'm sure this is something new
- [X] I have searched Google & StackOverflow for a solution and couldn't find anything
- [X] I…
-
Currently, the metaclass mixins provided by flask-sqlalchemy do not accept additional keyword arguments. Due to that, it breaks compatibility to the `__init_subclass_` hook.
The bug was present in …
-
- [ ] Statically check if `__gettatr__`, `__setattr__` and other special attributes are accessed or overloaded in the code
- [ ] check for metaclasses in inheritance
- [ ] Instrumentalize classes t…
dours updated
2 years ago
-
Hi all,
a source of constant pain has been access to the coordinates. It was decided that they would only be accessible from the `Wavefront` but we recently allowed `StaticAperture` to have pre-matu…
-
### Issue Description
Due to a change ([commit](https://github.com/pytorch/pytorch/commit/d0bfd79f3d1bbf8885b00acb6d72db0bc16f1995)) in the inheritance of `torch.nn.ModuleList`, attempting to import …
-
http://www.python.org/dev/peps/pep-3115/
-
I've read you paper and wanted to try transmorph myself, but I ran into some problems...
Either `from transmorph import datasets` or `from transmorph.datasets import load_chen_10x` raise TypeError...…
-
We need to decide whether to call the qubits input to experiments `physical_qubits` for all experiments going forward, as was started in #998. If so, the documentation needs to be clearly updated and …
-
```python
from beartype import beartype
class MetaFoo(type):
def __instancecheck__(cls, other):
return g()
class Foo(metaclass=MetaFoo):
pass
@beartype
def f(x: Foo):
…