Jon Brandvein
Jon Brandvein
Another thing: Apparently in Python you can pass non-ASCII numeric code points to the `int` and `float` functions: ``` >>> int('\u0c67') 1 ``` It seems niche to support this, but...
Would byte literals support the format operator `%` as in Python 3?
> we will need an operation for converting a byte value to a 1-byte string (analogous to what chr(x) and "%c" % x to do for code points. What is...
I aggregated the issues raised in this discussion thread so far. ## Resolved * They’re called “bytes literals”, not “byte string literals”. * Bytes literals support `\xXX` up to `\xFF`...
See my comments on the [starlark-go](https://github.com/google/starlark-go/pull/330) PR. I think the unifying theme of the problem with elems/ord is that we need a convenient, orthogonal, and obvious way to construct and...
Notes from my discussion with Alan follow. ### Corrections from my summary above: * `\u` and `\U` *are* allowed in bytes literals and denote the UTF-8 encoding of the given...
Thanks for the suggestion. This looks interesting, but it fails to render due to relative links in the readme. I've left you a [feature request](https://github.com/msabramo/setuptools-markdown/issues/1) in return. Before the next...
Not sure whether to route this to Core (@haxorz), Configurability (@gregestren), or Rules-API (@comius), so CCing TLs from all three.
I don't know what the correct behavior for glob should be (#12034). I will say that we shouldn't output warnings by default, unrequested. A flag for debugging empty globs might...
@fmeum I love that you brought up migration concerns. We do want rules to be substitutable by macros generally, and are concerned about designs that make this more difficult. But...