-
I had to switch from Active Python to Anaconda Python (2.7.10) under Windows 7 64bit. I installed the latest comtypes 1.1.2 and still get an error. But the code worked with Active Python well.
``` py…
-
Dear EF Team, Do you considering porting EF Core 5 to the Modern C++ ? Nowadays C++ 20 has all (Reflection, Safer Pointers, Metaclasses) to be it possible.
Benefits:
C++ has zero-overhead abstra…
-
I worked around this by commenting out the offending line 986. I'll leave it in place when not running mypy.
By the way:
- mypy disregarded my "# type: ignore" comment.
- The --show_traceback …
-
BPO | [28866](https://bugs.python.org/issue28866)
--- | :---
Nosy | @terryjreedy, @vstinner, @encukou, @markshannon, @serhiy-storchaka, @Vgr255, @JulienPalard, @miss-islington
PRs | python/cpython#131…
-
For this iteration I suggest to restrain from porting the dtype metatype. Porting `dtype` is currently blocked by metaclass support in HPy https://github.com/hpyproject/hpy/issues/296.
-
Hey, when I set a breakpoint in an ELF MIPSII using remote debugging, pwndbg throws an exception (binary is attached):
[bender.gz](https://github.com/pwndbg/pwndbg/files/742558/bender.gz)
pwndbg…
-
(I found this while working through `black`, so I kept the names of the classes to help refer back to the original case)
With the following block:
```python
from typing import Iterable
class…
-
### Bug description
```
class ApduCommandMeta(abc.ABCMeta):
def __new__(metacls, name, bases, namespace, **kwargs):
x = super().__new__(metacls, name, bases, namespace)
x._cla…
-
```py
class FooMetaclass(type):
pass
class Foo(metaclass=FooMetaclass):
pass
fm: FooMetaclass
reveal_type(fm) # note: Revealed type is "__main__.FooMetaclass"
if issubclass(fm, Foo):…
-
Sometimes you want to assert that certain modules are never imported. Apparently Pylint and Pyflake have plugins for that ([pylint-restricted-imports](https://pypi.org/project/pylint-restricted-import…