LLVM 11 no longer tolerates assigning NULL to bool variables.
The error shows up in code generated by swig, but the problem is
in swig's input.
ok robert@
gron transforms JSON into discrete assignments to make it easier to
grep for what you want and see the absolute 'path' to it. It eases the
exploration of APIs that return large blobs of JSON but have terrible
documentation.
$ gron "https://api.github.com/repos/tomnomnom/gron/commits?per_page=1" | \
fgrep "commit.author" | grep -v email
json[0].commit.author = {};
json[0].commit.author.date = "2016-07-02T10:51:21Z";
json[0].commit.author.name = "Tom Hudson";
gron can work backwards too, enabling you to turn your filtered data back
into JSON (gron --ungron).
In Redis 2.8.12, this patch was needed due to TCP_KEEPIDLE.
Since Redis 4.0.1, the code is guarded by #if defined(__GLIBC__) && ...
so adding && !defined(__OpenBSD__) doesn't make a difference.
Changelog (from https://github.com/Pylons/webtest/blob/master/CHANGELOG.rst)
2.0.35 (2020-04-27)
python3.8 compat
Remove use of deprecated splittype and splithost
2.0.34 (2020-01-29)
Fix the test length == 0 in check_content_type.
Treat <input type="search"> like <input type="text">.
Handle query parameters for the head method.
2.0.33 (2019-02-09)
Fixed#210. Allow to reset select multiple with field.value = []
Support for PYTHONOPTIMIZE=2, fix tests on PYTHONOPTIMIZE=1, 2
Fixed#196. Fix deprecation warnings for collections to use
collections.abc for Iterable on Python 3.
2.0.32 (2018-10-05)
remove invalid email from setup.py
2.0.31 (2018-10-05)
py33 is no longer supported. It may works but has been removed from tox
config
Fixed#205: Use empty string as default value for submit and button
tests use pytest
ok sthen@
around emulated screens in fullscreen mode. GTK's white default background
color is rather unpleasant to stare at for longer periods of time.
ok bentley (maintainer)