Peter Liljenberg
Peter Liljenberg
I meant that you can add it to `arguments: '--configuration $(buildConfiguration) --collect:"XPlat Code Coverage"'` that gets built into the command line that is actually run. I don't know if you...
Thank you for the PR, but this change breaks a lot of unit tests (see the CI build failure), so can you look at that and see what you need...
I just tested git master on a native El Capitan, and get this error: ``` FAIL: test_keysym_to_keycode_for_valid_symbol (__main__.TestXlibDisplay) ---------------------------------------------------------------------- Traceback (most recent call last): File "test/test_xlib_display.py", line 100, in test_keysym_to_keycode_for_valid_symbol...
It may be that the code should use `$TMPDIR` instead of hardcoding it to '/tmp' here: https://github.com/python-xlib/python-xlib/blob/master/Xlib/support/unix_connect.py#L114
There is no support for the XKB extension now. You can find the list of available extensions here: https://github.com/python-xlib/python-xlib/blob/master/Xlib/ext/__init__.py This project is just being maintained with bug fixes, but PRs...
It probably works, but a better way is to get a `Window` resource from the second `Display` by its ID: https://github.com/python-xlib/python-xlib/blob/1a3031544bb25464c4744edae39ac02b0e730f13/Xlib/display.py#L199 ```python from Xlib.display import Display master_display = Display() window_id...
https://github.com/python-xlib/python-xlib/blob/master/examples/eventthread.py is just a test program to see that the multi-threaded support in Xlib works, it is not intended to actually do anything. What do you want to use it...
Packaging systems have come a long way since this code was written, so it would be nice to support setuptools entrypoints for discovering and loading extensions. https://setuptools.pypa.io/en/latest/userguide/entry_point.html
It's been a long time since I looked at X keycodes, but based on your example it seems the results are primarily sorted on index and thus `
@IanChamberlain-SMS When you use the vstest collector (which you should in CI, so that's good!) you need to put the filters in a runsettings file and specify the path to...