-
http://search.cpan.org/~ether/Moose-2.1804/lib/Moose/Manual/Attributes.pod
http://search.cpan.org/~ether/Moose-2.1804/lib/Moose/Manual/Delegation.pod
http://search.cpan.org/~ether/Moose-2.1804/lib/M…
-
ruff incorrectly believes that the `__call__` method in a metaclass should be a classmethod and gives error N804 that the first argument should be named "cls" instead of "self", but only for immediate…
-
A document with the following structure will crash MongoEngine 0.24.0
```python
class MyDoc(Document):
fld = GenericReferenceField()
meta = {
"indexes": [{"fields": ["fld._r…
-
Hello
Right after installation of the mtenv, when importing into python (for instance running 'from mtenv import make'), the following error appears:
Traceback (most recent call last):
File "…
-
Specifically, it would be nice if there was a keyword `Instance` such that `Instance[Type[_T]]` is equivalent to `_T`
I'm thinking about this mostly in the context of working with metaclasses.
S…
-
See https://github.com/pyecore/pyecore/issues/126#issuecomment-1255030180
Quoting from there, for enums,
> pyecoregen generates the wrong code:
>
> ```python
> for classif in otherClassifiers:…
-
**Bug Report**
Since mypy 0.990 I am getting a "Metaclass conflict" error for the definition of a class derived from a base class which uses a metaclass imported from a third-party library that doe…
-
```python
def _Implements(className: str, parents: typing.Tuple[typing.Type, ...], attrs: typing.Dict[str, typing.Any]):
interface = parents[0]
res = type(className, (), attrs)
dec = jpype.JImp…
-
-
Current plan for static typing is to generate type stubs (".pyi" files) for framework bindings. This should be fairly straightforward for CoreFoundation based libraries, but there are some challenges …