Simon Lipp

Results 19 issues of Simon Lipp

```python from pywayland.client import Display display = Display() display.connect() while True: display.dispatch(block=True) ``` This simple script ignores SIGINT (Control-C in a terminal). Adding `signal.signal(signal.SIGUSR1, lambda *a: print("USR1"))` shows that it...

bug

Currently the info box overlaps with the image. Could we put the same information in a statusbar, in the same style as zathura ? It would be cool to have...

enhancement

First shot at an implementation for fixes #143

Inserting an object with many tags using long tag chains (tag1/tag2/tags3/.../@) does not work anymore (worked in 0.8.1) This scripts shows the problem : it creates 100 tags in an...

No Ansible, pure Mitogen (both 0.3.x and 0.2.x). `ansible.unix` can’t be imported in slaves, as demonstrated by this simple code : ```python import mitogen.utils import mitogen.master import mitogen.unix def test():...

affects-0.3

No Ansible, pure mitogen. Also affects 0.2.x. If I declare a simple service on the master node, I can call it in slave nodes but not on the master node...

affects-0.3

Opening a locked base returns an error. It would be nice to have a blocking method as well (wait for the lock to be released) ; right now, I’m implementing...

enhancement

Upload to hotsapi.net in addition to hotslogs. Since hotslogs & hotsapi both use the same format for match ID, I could reuse most of the code of HotsLogsProvider and moved...

feature

In some rare situation, knex may throw a null/undefined as the first argument of wrapIdentifier. Objection's snake case mappers does not check for this and just crashes. Reproduction : ```js...

The example doesn’t work (`RuntimeError: no shell found`) because wl_shell has been deprecated and is not exposed anymore in my compositor (Sway). xdg_wm_base must be used instead.

bug