Benoit Pierre

Results 121 comments of Benoit Pierre

Does it work without `-b`?

I just bypass the issue by setting the `SSL_CERT_FILE` environment variable (e.g. to the output of `python -m pip._vendor.certifi` or `python -m certifi`). For reference this is the contents of...

@eazar001: OK, so you seem to be using 0.16; as I can reproduce the error with this version, but not with master. Can you confirm?

Great! @vasily-v-ryabov: maybe we should release a 0.16.1/0.17 version now? The fixes to property handling and the RECORD extension are important enough to warrant it.

How do you test? Because if you test by clicking on the terminal where the command is run, it might just be the fact that you're entering selection mode, which...

I can reproduce with Chromium. From looking at `XGetWindowProperty`'s documentation: > If the specified property exists but its type does not match the specified > type, XGetWindowProperty returns the actual...

Isn't the `Delete` key non-standard on some Apple keyboards? What do you get with `xmodmap -pk | grep Delete`? Maybe testing something else, like `Escape` is more robust: ``` diff...

Nope, I don't have access to a OS X machine. The problem with this test is it's highly dependent on the keymap being used, so maybe we should just drop...

Does it work when run under `Xvfb`? ``` xvfb-run nosetests test/test_xlib_display.py ```

It's an helper script provided by the package on Arch Linux / Ubuntu. And running manually with `(export DISPLAY=:99; Xvfb -ac :99 & xvfb_pid=$!; sleep 3; nosetests test/test_xlib_display.py; kill $xvfb_pid;...