facebook / starlark-rust

A Rust implementation of the Starlark language
Apache License 2.0
699 stars 57 forks source link

repr("\x01") does not conform to spec #40

Closed stepancheg closed 2 years ago

stepancheg commented 2 years ago
$> print(repr("\x01"))
"\u{1}"

should be

"\x01"