Changeset 230
- Timestamp:
- 08/20/06 06:41:50 (2 years ago)
- Files:
-
- pyyaml/trunk/README (modified) (1 diff)
- pyyaml/trunk/announcement.msg (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
pyyaml/trunk/README
r156 r230 2 2 3 3 To install, type 'python setup.py install'. 4 5 You may build faster LibYAML based parser and emitter with 6 'python setup_with_libyaml.py install'. 7 Then you may use them with the calls: 8 >>> yaml.load(stream, Loader=yaml.CLoader) 9 >>> yaml.dump(data, Dumper=yaml.CDumper) 4 10 5 11 For more information, check the PyYAML homepage: pyyaml/trunk/announcement.msg
r192 r230 1 1 From: Kirill Simonov <xi@gamma.dn.ua> 2 2 To: python-list@python.org, python-announce@python.org, yaml-core@lists.sourceforge.net 3 Subject: [ANN] PyYAML-3.0 3: YAML parser and emitter for Python3 Subject: [ANN] PyYAML-3.04: YAML parser and emitter for Python 4 4 5 5 ======================== 6 Announcing PyYAML-3.0 36 Announcing PyYAML-3.04 7 7 ======================== 8 8 9 A new bug-fix release of PyYAML is now available: 9 A new release of PyYAML, featuring LibYAML bindings and support for recursive 10 structures, is now available: 10 11 11 12 http://pyyaml.org/wiki/PyYAML … … 15 16 ======= 16 17 17 * Fix Python 2.5 compatibility issues. 18 * Fix numerous bugs in the float handling. 19 * Fix scanning some ill-formed documents. 20 * Other minor fixes. 18 * Include experimental LibYAML bindings. 19 * Fully support recursive structures. 20 * Fix a number of bugs and annoyances. 21 21 22 22 … … 27 27 PyYAML documentation: http://pyyaml.org/wiki/PyYAMLDocumentation 28 28 29 TAR.GZ package: http://pyyaml.org/download/pyyaml/PyYAML-3.0 3.tar.gz30 ZIP package: http://pyyaml.org/download/pyyaml/PyYAML-3.0 3.zip31 Windows installer: http://pyyaml.org/download/pyyaml/PyYAML-3.0 3.win32.exe29 TAR.GZ package: http://pyyaml.org/download/pyyaml/PyYAML-3.04.tar.gz 30 ZIP package: http://pyyaml.org/download/pyyaml/PyYAML-3.04.zip 31 Windows installer: http://pyyaml.org/download/pyyaml/PyYAML-3.04.win32.exe 32 32 33 33 PyYAML SVN repository: http://svn.pyyaml.org/pyyaml … … 58 58 59 59 >>> import yaml 60 61 >>> yaml.load(""" 62 ... name: PyYAML 63 ... description: YAML parser and emitter for Python 64 ... homepage: http://pyyaml.org/wiki/PyYAML 65 ... keywords: [YAML, serialization, configuration, persistance, pickle] 60 >>> print yaml.load(""" 61 ... --- &A 62 ... direct self reference: *A 63 ... indirect self references: [*A, *A, *A] 66 64 ... """) 67 {'keywords': ['YAML', 'serialization', 'configuration', 'persistance', 68 'pickle'], 'homepage': 'http://pyyaml.org/wiki/PyYAML', 'description': 69 'YAML parser and emitter for Python', 'name': 'PyYAML'} 70 71 >>> print yaml.dump(_) 72 name: PyYAML 73 homepage: http://pyyaml.org/wiki/PyYAML 74 description: YAML parser and emitter for Python 75 keywords: [YAML, serialization, configuration, persistance, pickle] 65 {'direct self reference': {...}, 66 'indirect self references': [{...}, {...}, {...}]} 76 67 77 68
