Changeset 231
- Timestamp:
- 08/20/06 14:26:02 (2 years ago)
- Files:
-
- pyyaml/trunk/announcement.msg (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
pyyaml/trunk/announcement.msg
r230 r231 18 18 * Include experimental LibYAML bindings. 19 19 * Fully support recursive structures. 20 * Fix a number of bugs and annoyances. 20 * Fix a number of bugs and annoyances 21 (see http://pyyaml.org/wiki/PyYAML#History for more details). 21 22 22 23 … … 29 30 TAR.GZ package: http://pyyaml.org/download/pyyaml/PyYAML-3.04.tar.gz 30 31 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 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 32 35 33 36 PyYAML SVN repository: http://svn.pyyaml.org/pyyaml … … 59 62 >>> import yaml 60 63 >>> print yaml.load(""" 61 ... --- &A 62 ... direct self reference: *A 63 ... indirect self references: [*A, *A, *A] 64 ... &A { 65 ... direct self reference: *A, 66 ... indirect self references: [*A, *A, *A] 67 ... } 64 68 ... """) 65 69 {'direct self reference': {...}, … … 74 78 PyYAML is released under the MIT license. 75 79 80 This release is developed with the support of the Google Summer of Code 81 program under the mentorship of Clark Evans. 82
