Custom Query (121 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (73 - 75 of 121)

Ticket Resolution Summary Owner Reporter
#95 invalid Libyaml svn revision 298 does not compile xi michael.the.drummer@…

Reported by michael.the.drummer@…, 5 years ago.

Description

Current trunk (revision 298) of libyaml does not compile no either my Ubuntu box or on OSX Tiger. There are 2 separate issues.

The first is a simple error in yaml_private.h. A Diff of this file is below.

Index: src/yaml_private.h
===================================================================
--- src/yaml_private.h	(revision 298)
+++ src/yaml_private.h	(working copy)
@@ -1231,7 +1231,7 @@
  * The information of a node being emitted.
  */
 
-struct typedef yaml_node_data_s {
+typedef struct yaml_node_data_s {
     /* The node id. */
     int id;
     /* The collection iterator. */

The second problem I am not sure about. Build log is attached.

Michael

#60 fixed Error loading timestamps xi miki@…

Reported by miki@…, 6 years ago.

Description

Try the following script:

#!/usr/bin/env python

import syck
from datetime import datetime

for i in range(10000):
    now = datetime.now()
    dumped = syck.dump(now)
    loaded = syck.load(dumped)
    if now != loaded:
        print "original:", now
        print "result:", loaded
        print "dump:", dumped
        break

I get:

original: 2007-09-17 11:04:08.091612
result: 2007-09-17 11:04:08.916120
dump: --- !timestamp 2007-09-17T11:04:08.091612

The YAML looks OK, so the parsing is wrong.

#65 worksforme Noise in output xi miki@…

Reported by miki@…, 6 years ago.

Description

Sometimes when dumping a large dictionary, some stray "--" are generated.

The dictionary of type (string -> list). Example output:

- icco
- oecd
- un
--- - iea
- eca
- adb-africa
- adb-asia

I can provide a test case that cases the error on my machine, mail me.

Note: See TracQuery for help on using queries.