Custom Query (121 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (40 - 42 of 121)

Ticket Resolution Summary Owner Reporter
#115 fixed Initialisation not ANSI compliant xi nothingmuch@…

Reported by nothingmuch@…, 4 years ago.

Description

Hi,

  1. Merijn Brand reported a bug against YAML::LibYAML involving a compliation error of scanner.c on HPUX:

 http://rt.cpan.org/Public/Bug/Display.html?id=42405

Supplied is a patch that hopefully resolves this issue.

#184 invalid Invalid sequence handling xi nick.demyanchuk@…

Reported by nick.demyanchuk@…, 2 years ago.

Description

Pyyaml improperly dumps sequence block. For example:

>>> from yaml import load, dump

>>> cfg = """key:
              - value
              - another one
              - foo
          """

>>> yaml_dict = load(cfg)

>>> print yaml_dict
{'key': ['value', 'another one', 'foo']}

>>> new_cfg = dump(yaml_dict)

>>> print new_cfg
key: [value, another one, foo]
#88 invalid Internal emitter error caused by yaml_emitter_set_output_string xi mzagrabe@…

Reported by mzagrabe@…, 5 years ago.

Description

Greetings,

I am attempting to parse a yaml file in some C code and have most recently tried to use:

yaml_emitter_set_output_string

However after compiling and running the program I receive an internal emitter error.

Files attached:

yaml_error.c mzagrabe.yaml

compiled with:

gcc -c yaml_error.c && gcc -lyaml -o yaml_error yaml_error.o

command line:

% ./yaml_error mzagrabe.yaml

libyaml version:

Debian Sid

ii libyaml-0-1 0.1.1-1 ii libyaml-dev 0.1.1-1

Note: See TracQuery for help on using queries.