>>> load('1, 1', CommaSeparated(Int()))
YAML([1, 1])
>>> load('1,1', CommaSeparated(Int()))
YAML([1, 1])
>>> as_document('1,1', CommaSeparated(Int()))
YAML([1, 1])
>>> as_document('1, 1', CommaSeparated(Int()))
strictyaml.exceptions.YAMLSerializationError: ' 1' not an integer.