Results 31 issues of Vasily Zakharov

The following code: ```python3 from typing import Type from pytypes import TypeChecker def f() -> Type[str]: return str with TypeChecker(): f() print("OK") ``` fails as follows: ```python3 $ python3 Test.py...

The following code: ```python3 from typing import Iterator from pytypes import TypeChecker def f() -> Iterator[str]: yield 'abc' with TypeChecker(): x = tuple(c for c in f()) print("OK") ``` fails...

The following code: ```python3 from typing import Iterable from pytypes import TypeChecker def f(a: Iterable[str]) -> None: pass with TypeChecker(): f((c for c in 'abc')) print("OK") ``` fails as follows:...

The following code: ```python3 from collections import OrderedDict from typing import Mapping from pytypes import TypeChecker def f() -> Mapping[int, str]: return OrderedDict() with TypeChecker(): f() ``` fails as follows:...

enhancement

The following warning appears transiently from time to time while working with websockets: ```python3 /usr/lib/python3/dist-packages/ws4py/websocket.py:230: ResourceWarning: unclosed self.sock = None ResourceWarning: Enable tracemalloc to get the object allocation traceback ```...

When debugging is enabled, sometimes the following message appears: ``` [D 230728 02:14:00 websocket:465] Closing message received (1005) 'b''' ``` Note too many `'`s in the message. The reason for...

### Things to check first - [X] I have searched the existing issues and didn't find my bug already reported there - [X] I have checked that my bug is...

bug

### Things to check first - [X] I have searched the existing issues and didn't find my bug already reported there - [X] I have checked that my bug is...

bug

Didn't you think of providing static typing stubs for this library?

Building `cryptopp-cmake` v8.9.0 with `cmake` v3.22.1 under Android Studio on Windows 10 produces the following warning: ``` C/C++: ninja: Entering directory `[...]' C/C++: [...]/cryptopp-cmake/cryptopp/validat1.cpp:1053:31: warning: variable 'j' set but not...