Neil Mitchell
Neil Mitchell
`//foo.txt`
So I think the best approach is to probably to change all the extension methods to just operate on the bit to the right of the right-most pathSeparator. That way...
@allada - if the two fixes @dtolnay proposes works, it would be great to know and we can apply them. As @cjhopman says, this probably fails remotely because we haven't...
The plan would be to add a formatter to the https://github.com/facebookexperimental/starlark-rust library, and then expose it through `buck2 starlark fmt` or similar. Vaguely something we'd like to do, but someone...
That all sounds ideal! JSON and CSV are also on my list :)
@snoyberg I'd be interested, even if it doesn't impact foundation directly.
@snoyberg - do you have any concrete advice for which XML parsing library to use until the foundation one is ready? xml-conduit? (I had initially thought it was probably a...
To add to my original list, YAML should probably be there. Note that the YAML library takes in ByteString, and spits out Vector, HashMap and Text - so you're hopping...
The issue is that Python defines `Ellipsis: EllipsisType` in the builtins, so what you have is essentially: ``` from builtins import Ellipsis class Ellipsis: ... def foo(): Ellipsis() ``` When...
Alas, all these names are compatible with Buck1, so we have a lot of legacy - the name is years old. My guess is once we eliminate Buck1 usage internally...