Lele Gaifax

Results 153 comments of Lele Gaifax
trafficstars

@tejasmanohar: FYI, the hard part of this is already implemented in [pg_query](https://github.com/lelit/pg_query), I'd like to come up with a nicer way of write those transforms though.

FWIW, the issue is still present in v8.3.1, I'm a bit surprised nobody else is experiencing it, and no hint come up here. Oh well.

Thank you! I will try harder to get an MWE, I failed with two distinct attempts in the past... But yes, I see that removing `--doctest-modules` from the `addopts` configuration...

> Another thing to look for is if there are symlinks in the repo Not in the Python sources, there is a single one between `/docs/changes.rst` and `/CHANGES.rst`. > or...

Hi, sorry for the delay. As I'm not an expert on these things, I wonder if there is a way to test this, in particular to avoid future divergences between...

Thank you for mentioning `stubgen`: from above I infer it comes with `mypy`... I will try, as time permits.

> It seems to me that the invisibility of a method in the parent is purely implementation peculiarities. This is essentially an empty method in the parent that can be...

Provided we find a way to not introduce any overhead, inevitable when unconditionally calling a method... I've done that that way for a reason :wink:

I will try to come up with either a measure of the overhead, or with a possible different approach. Not sure when, though, sorry.

Ok, I quickly hacked one further _contender_ in the benchmarks, basically: ```python class DecoderPython(rj.Decoder): def end_array(self, a): return a def start_object(self): return {} def end_object(self, d): return d def string(self,...