Felix Yan
Felix Yan
Personally I use them to deselect from geoip marking, because they don't have a real geolocation associated. For example, MaxMind will mark `9.9.9.0/29` as Europe, Switzerland. This can't be easily...
The generated test_fstring.py became SyntaxError: ``` File "test_fstring.py", line 534 self.assertEqual(f'{"eric\'s"}', "eric's") ^ SyntaxError: f-string expression part cannot include a backslash ``` The correct source is: ``` self.assertEqual(f"{'''eric's'''}", "eric's") ```...
I get this whenever a network interface no longer exist, like powering off a virtual machine, etc.
The test failure should not be related to the PR.
A friendly ping to bring this PR back to life :)
Looks like it's already fixed in 031c9750c74e3313b954b09e3027aaa6595649bb. A new release would help us packaging it :)
After some investigation, this seems to be incompatibilities between gevent and multiprocessing that flake8 utilizes. Adding a `app.file_checker_manager.using_multiprocessing = False` right after `app.make_file_checker_manager()` in pytest_flake8 fixes this for me.
After changing the id matching part in main.c, I got the following error: ``` Failed 'EC_KEY_check_key(key) - 1': -1 - LIBUSB_ERROR_IO ``` Full output: https://paste.xinu.at/0bMCm/
@pcraciunoiu I have exactly the same result as yours. Have you tried to roll in in a Windows virtual machine? In my case it doesn't work correctly either, and also...
You can capture the USB traffic if you use virtualbox. I am not expert though, and no progress so far to improve the prototype.