Tina Müller (tinita)

Results 261 comments of Tina Müller (tinita)

Like discussed in chat, the testing branch suggestion didn't work out. For reference, the new suggestion: #188

Just for the record, here is my suggestion: #192

Can you please provide some reproducing C code? thanks

Just a note: @tlsa helped finding out that the `yaml_free(version_directive)` in commit "fix version_directive memory leak" is actually wrong. @tlsa's suggestion was: ``` if (version_directive_ref == NULL) { yaml_free(version_directive); }...

Thanks, but there is a missing `}` for the previous `if`

For me the reason has been that I * don't know enough C to understand the use case, and the other changes in #62 * don't have enough time, so...

For a parser, the scalar `

A higher level library like pyyaml processes merge keys when it already has constructed a partial data structure. With a merge key you usually merge an existing alias. This is...

An alias is part of the syntax. Aliases will be parsed as an `alias_event`. The value, however, can not be resolved until the data is constructed. How do you process...

@martingkelly ok, like I said, resolving of booleans and other types does not happen in the document loader, so also merge keys are simple scalar nodes like `true`, `false`, `23`...