Peter Ludemann
Peter Ludemann
lib2to3 is going away; don't know if any of the potential successors will have a transformation library. All I've seen so far is that there are a couple of potential...
Instead of `text = ubelt.codeblock(...)` why not use the standard Python library's `textwrap.dedent()`? Anyway, you can run `black` or `black -S` (https://github.com/psf/black) to do some of the transformations that you...
@mscheper - My comment has to do with transformation libraries - and changing between single and double quotes would be an example of a transformation. As noted elsewhere, yapf only...
As the README.md says: "YAPF is not an official Google product (experimental or otherwise), it is just code that happens to be owned by Google." Of course, YAPF has more...
@gwelymernans - Is this https://github.com/google/yapf/issues/993 and https://github.com/google/yapf/commit/516e197de953610d62af057dbd000564e2a66bc5 ? I think that pytype is switching to LibCST (possibly Black is also switching to LibCST, but I haven't been tracking that)
It seems to me that this is a fair bit of work (which nobody seems to be volunteering to do) and there's a simple work-around: use `black` to change the...
From the `README.rst`: ``` YAPF tries very hard to be fully PEP 8 compliant. However, it is paramount to not risk altering the semantics of your code. Thus, YAPF tries...
PlPredicate, PlModule have been added with https://github.com/SWI-Prolog/packages-cpp/pull/32 Not closing yet because there might be some more wrappers needed.
@ridgeworks - `protobufs:float64_codes/2` is currently commented out "exports" list of `protobufs` ... if you think it's useful to add it back to the interface, I can do that. I only...
Protobufs encode ints as little-endian, so if we change the names to int32_little_endian_codes/2, float64_ieee_codes/2, etc. then it would be clear what they do. (Also, int64_zigzag/2 should become int64_zigzag_little_endian/2, I suppose....