jmespath.site icon indicating copy to clipboard operation
jmespath.site copied to clipboard

definition of raw-string-char and compliance test are inconsistent

Open ktakashi opened this issue 5 years ago • 0 comments

The definition says the following:

raw-string-char   = (%x20-26 / %x28-5B / %x5D-10FFFF) / preserved-escape /
                      raw-string-escape
preserved-escape  = escape (%x20-26 / %28-5B / %x5D-10FFFF)

However, the compliance test requires to handle the following:

'newline\n'

I think the definition should accept all characters except '.

ktakashi avatar Sep 30 '18 09:09 ktakashi