Alexander Macdonald
Alexander Macdonald
As explained in the design doc Santa makes no attempt to support blocking of shell scripts - which is understandable in general. But in the case of a user double...
Here's a testcase that shows string escapes working for dictionary values, but not for the keys: ``` cat(RJSONIO::toJSON(list("test\"escape" = "another\"escape"))) { "test"escape": "another\"escape" } ```
Fixed a few instances of "not x in y" by replacing them with the pep8 favored "x not in y"
A schema that validates that a list contains instances of a single type i.e. `Schema([str])` takes a surprising amount of time when given a large list. Specializing this would be...