Heraldo

Results 22 issues of Heraldo

I want to automate multiple Chrome windows by sending window messages for mouse and keyboard input (WM_MOUSEMOVE, WM_LBUTTONDOWN, WM_KEYDOWN, WM_MOUSEWHEEL, ...), but Chrome windows on background ignores WM_MOUSEWHEEL messages. that's...

I have the following coroutine function that consumes a queue using `QueueIterator` ```python async def _consume_queue(self, queue: aio_pika.Queue): async with queue.iterator(no_ack=True) as messages: try: async for msg in messages: pass...

### OS/Platform Windows ### Installed https://ungoogled-software.github.io/ungoogled-chromium-binaries/ ### Version 102.0.5005.61 ### Tested upstream? - [X] I have tried reproducing this issue in Chrome and it could not be reproduced there -...

enhancement
help wanted

From what I understood so far to make an async version of `json-rpc`'s core one would need to just make an async version of [JSONRPCResponseManager](https://github.com/pavlov99/json-rpc/blob/master/jsonrpc/manager.py). I think the only way...

question

[Remote Method Invocation (RMI)](https://en.wikipedia.org/wiki/Distributed_object_communication) is the object oriented's version of RPC, where methods are invoked on remote objects. It would allow people to employ object oriented programming in the architecture...

I am trying to interact with several X11 windows concurrently, for that I am creating multiple `Display` instances to have dedicated connection for each window. Even if xlib is threadsafe,...

question

I am trying to interact with chrome browser windows using X11 APIs but python-xlib wrapper always returns empty window names. Here is what `xprop` shows about chrome windows: ``` WM_STATE(WM_STATE):...

bug

QEMU docs [states][1] that User Networking has poor performance due the need to emulate a whole TCP/IP stack. [TAP][2] networking has the best performance. As reference, [qemu-docker][3] is an image...

Hi. Sometimes async tests hangs when background tasks raises some exception but it's not propagated to test function, it's not a bug in pytest-asyncio but a problem in application code....

Looks like `python build.py` doesn't use already downloaded and unpacked chromium src at `build/src`, it redownloads and unpacks again.