Fix the bug when the `path` in `add_path_resolver` contains boolean values. Fix...
[pyyaml/python3.git] / announcement.msg
blob06addaf8e341198d7768ddab261e79c334f7bbe2
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.04: YAML parser and emitter for Python
5 ========================
6  Announcing PyYAML-3.04
7 ========================
9 A new release of PyYAML, featuring LibYAML bindings and support for recursive
10 structures, is now available:
12     http://pyyaml.org/wiki/PyYAML
15 Changes
16 =======
18 * Include experimental LibYAML bindings.
19 * Fully support recursive structures.
20 * Fix a number of bugs and annoyances
21   (see http://pyyaml.org/wiki/PyYAML#History for more details).
24 Resources
25 =========
27 PyYAML homepage: http://pyyaml.org/wiki/PyYAML
28 PyYAML documentation: http://pyyaml.org/wiki/PyYAMLDocumentation
30 TAR.GZ package: http://pyyaml.org/download/pyyaml/PyYAML-3.04.tar.gz
31 ZIP package: http://pyyaml.org/download/pyyaml/PyYAML-3.04.zip
32 Windows installer:
33     http://pyyaml.org/download/pyyaml/PyYAML-3.04.win32-py2.3.exe
34     http://pyyaml.org/download/pyyaml/PyYAML-3.04.win32-py2.4.exe
36 PyYAML SVN repository: http://svn.pyyaml.org/pyyaml
37 Submit a bug report: http://pyyaml.org/newticket?component=pyyaml
39 YAML homepage: http://yaml.org/
40 YAML-core mailing list: http://lists.sourceforge.net/lists/listinfo/yaml-core
43 About PyYAML
44 ============
46 YAML is a data serialization format designed for human readability and
47 interaction with scripting languages.  PyYAML is a YAML parser and
48 emitter for Python.
50 PyYAML features a complete YAML 1.1 parser, Unicode support, pickle
51 support, capable extension API, and sensible error messages.  PyYAML
52 supports standard YAML tags and provides Python-specific tags that allow
53 to represent an arbitrary Python object.
55 PyYAML is applicable for a broad range of tasks from complex
56 configuration files to object serialization and persistance.
59 Example
60 =======
62 >>> import yaml
63 >>> print yaml.load("""
64 ... &A {
65 ...     direct self reference: *A,
66 ...     indirect self references: [*A, *A, *A]
67 ... }
68 ... """)
69 {'direct self reference': {...},
70 'indirect self references': [{...}, {...}, {...}]}
73 Copyright
74 =========
76 The PyYAML module is written by Kirill Simonov <xi@resolvent.net>.
78 PyYAML is released under the MIT license.
80 This release is developed with the support of the Google Summer of Code
81 program under the mentorship of Clark Evans.