YAML.jl
YAML.jl copied to clipboard
Parse yer YAMLs
The following code hangs and continues to consume more memory until you manually kill it. ```julia YAML.load("a: \"b\"\"") ``` Note the trailing `"` after `"b"`.  with package versions on...
Although using this package is pretty straightforward, I can't help but notice the general lack of documentation in the package: aside from the lack of a Documenter.jl integration, there is...
For 2d arrays, the YAML.write_file() function writes a string version of the julia data which is parsed wrongly when read back by the load_file function. ## Specs Package version: YAML...
I've been looking into this package a bit, looking through pull requests and issues. And, something that seems to be key to me is which version of YAML this is...
I use yaml files to store my simulation parameters and I am commenting every line. Sometimes I need to change values from a software and not manually. Then the comments...
Just a way to manage it, probably exists a better way. With tests
Given a YAML file like: ``` --- creator: LAMMPS timestep: 0 ... --- creator: LAMMPS timestep: 1 ... ``` the following code: ```julia julia> import YAML julia> for fs in...
Adds timezones for DateTime parsing! This is accomplished through the use of the TimeZones.jl package. The tests in [test/spec-02-22.expected](https://github.com/JuliaData/YAML.jl/compare/master...ThatcherC:YAML.jl:timezones?expand=1#diff-361e779d45c10fe6c257e2fcd4f455017745130478c14daf589d09b2e7009113) had to be updated to output `ZonedDateTime` objects instead of `DateTime`...
I am wondering if there is an issue in the way YAML.jl parses a list of an empty list because loading the file I save returns an error: ``` using...
Given the yaml file: ``` # Test ``` The following code crashes: ``` using YAML open("test.yaml", "r") do io YAML.load(io) end ``` With the error: ``` ERROR: AssertionError: typeof(forward!(composer.input)) ==...