Nikita Tikhonov

Results 7 comments of Nikita Tikhonov

I had an initial idea of calling ``PyType_Type``, just like from python, in order to construct new classes with multiple inheritance: ```python class A: a = 13 class B: b...

Seems that the aforementioned PR fixed the issue. Thanks!

Actually, it seems as though dependabot only fetches the `[tool.poetry.group.*]` dependencies, without checking them for updates. Sorry for misleading ._.')/

Yeah, here are the logs for [gd.py](https://github.com/nekitdev/gd.py): logs output proxy | time="2022-10-03T15:47:19Z" level=info msg="proxy starting" commit=e2b085ba431f2cff844f6583fd2c63a3a8e67053 proxy | 2022/10/03 15:47:19 Listening (:1080) updater | 2022-10-03T15:47:19.906684114 [anonymous-instance:main:WARN:src/firecracker/src/main.rs:370] You are using a...

Hey there! Unfortunately, tests are still to be implemented. Let's say I'm 90% sure everything works :p Just kidding, I'll leave this issue open up until everything is thoroughly tested.

This function ```python async def awaiting(awaitable: Awaitable[T]) -> T: return await awaitable ``` can do the trick to wrap awaitables into coroutines; alas, there is an additional `await` added.