Fix a bug when a block scalar is incorrectly emitted in the simple key context.
[pyyaml/python3.git] / announcement.msg
blob8e988689276c604ee2c1fbc53daf639a46130b80
1 From: Kirill Simonov <xi@gamma.dn.ua>
2 To: python-list@python.org, python-announce@python.org, yaml-core@lists.sourceforge.net
3 Subject: [ANN] PyYAML-3.03: YAML parser and emitter for Python
5 ========================
6  Announcing PyYAML-3.03
7 ========================
9 A new bug-fix release of PyYAML is now available:
11     http://pyyaml.org/wiki/PyYAML
14 Changes
15 =======
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.
23 Resources
24 =========
26 PyYAML homepage: http://pyyaml.org/wiki/PyYAML
27 PyYAML documentation: http://pyyaml.org/wiki/PyYAMLDocumentation
29 TAR.GZ package: http://pyyaml.org/download/pyyaml/PyYAML-3.03.tar.gz
30 ZIP package: http://pyyaml.org/download/pyyaml/PyYAML-3.03.zip
31 Windows installer: http://pyyaml.org/download/pyyaml/PyYAML-3.03.win32.exe
33 PyYAML SVN repository: http://svn.pyyaml.org/pyyaml
34 Submit a bug report: http://pyyaml.org/newticket?component=pyyaml
36 YAML homepage: http://yaml.org/
37 YAML-core mailing list: http://lists.sourceforge.net/lists/listinfo/yaml-core
40 About PyYAML
41 ============
43 YAML is a data serialization format designed for human readability and
44 interaction with scripting languages.  PyYAML is a YAML parser and
45 emitter for Python.
47 PyYAML features a complete YAML 1.1 parser, Unicode support, pickle
48 support, capable extension API, and sensible error messages.  PyYAML
49 supports standard YAML tags and provides Python-specific tags that allow
50 to represent an arbitrary Python object.
52 PyYAML is applicable for a broad range of tasks from complex
53 configuration files to object serialization and persistance.
56 Example
57 =======
59 >>> import yaml
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]
66 ... """)
67 {'keywords': ['YAML', 'serialization', 'configuration', 'persistance',
68 'pickle'], 'homepage': 'http://pyyaml.org/wiki/PyYAML', 'description':
69 'YAML parser and emitter for Python', 'name': 'PyYAML'}
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]
78 Copyright
79 =========
81 The PyYAML module is written by Kirill Simonov <xi@resolvent.net>.
83 PyYAML is released under the MIT license.