facebook / starlark-rust

A Rust implementation of the Starlark language

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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

stepancheg opened this issue · comments

$> print(repr("\x01"))
"\u{1}"

should be

"\x01"