Wim Jeantine-Glenn
Wim Jeantine-Glenn
That's a good idea. I assume you didn't intend to include `"key1": "val1",` in the example response here? I'll have a look and see what I can do. Handling exclusion...
Why not like this? ``` [ { "key1": "val1", "key2": "val2", "key3":{ "key1": "valA", "key3": "valC", }, } ] ```
@mlissner Could you clarify? I don't see that claim anywhere there, nor code to support that feature. And there is no test coverage showing nested filtering working.
Hi @sharrajesh , I saw your PR, but it's not clear to me what it's fixing. Could you please make a failing test case which reproduces the issue?
Good suggestion, and should be easy to implement. PRs welcome!
I don't think json encoding is a fair analogy, because it is not possible to represent circular references in a json serialization. It _is_ possible in a Python dict, so...
I donβt think it is that tricky in practice, you just keep track of visited ids as you go. The repr is already doing this, as mentioned, so take a...
[I'm also getting this in CI](https://github.com/wimglenn/advent-of-code-data/pull/53/checks?check_run_id=3752252206): ``` aocd\utils.py:40: in blocker aoc_now = datetime.now(tz=AOC_TZ) C:\hostedtoolcache\windows\Python\2.7.18\x64\lib\site-packages\freezegun\api.py:356: in now now = cls._time_to_freeze() or real_datetime.now() C:\hostedtoolcache\windows\Python\2.7.18\x64\lib\site-packages\freezegun\api.py:386: in _time_to_freeze return get_current_time() C:\hostedtoolcache\windows\Python\2.7.18\x64\lib\site-packages\freezegun\api.py:181: in get_current_time return...
Yes, but it seems controversial (open since 2018 - https://github.com/pypa/pip/issues/5216) And I think they want to remove it due to lack of resources or volunteer efforts to implement it better....
@takluyver I would also like to use this feature