denballakh

Results 8 comments of denballakh

```py from __future__ import annotations class X: ... class Y: # some_descriptor: Descriptor def __init__(self) -> None: self.some_descriptor = Descriptor() class Descriptor: def __get__(self, obj: X, cls: type[X]) -> int:...

I rebuilt interpreter in debug mode (`build.bat -c Debug`) and got some results. Now i am running interpreter with flags `-X dev -X faulthandler`. I am running second version of...

pyglet indeed has this feature, i can confirm it also has this feature: when imgui viewport is not focused and you interact with it in any way (hover over something,...

I managed to run [this generator](https://github.com/masc-it/pyimgui-interface-generator) on latest `core.pyx`, manually edited some things that werent able to be parsed and added constants. Resulting `imgui.pyi` file is available in this repo:...

I have a repo with single-file stub for imgui. It is in very early stage, I dont have time to go through all functions and annotate them, I only annotate...

i dont like the idea of raising exception in this case i would prefer it to be silently ignored such rects can pop up as result of some complicated calculations,...

There is `file.write(...)` as well. Result is almost never used.

I don't think it's worth it. What's wrong with `master`? If this is changed, then nothing good will happen, there will only be inconvenience for some contributors.