Changeset 279
- Timestamp:
- 09/30/08 09:08:14 (5 years ago)
- Location:
- pyyaml/trunk
- Files:
-
- 3 edited
-
MANIFEST.in (modified) (1 diff)
-
README (modified) (1 diff)
-
announcement.msg (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
pyyaml/trunk/MANIFEST.in
r227 r279 1 include README LICENSE setup.py setup_with_libyaml.py1 include README LICENSE setup.py 2 2 include ext/_yaml.pyx ext/_yaml.pxd ext/_yaml.h ext/_yaml.c 3 3 recursive-include examples *.py *.cfg -
pyyaml/trunk/README
r253 r279 3 3 To install, type 'python setup.py install'. 4 4 5 You may build faster LibYAML based parser and emitter with 6 'python setup_with_libyaml.py install'. 7 Then you may use the LibYAML based parser this way: 5 To build and install PyYAML with LibYAML bindings, type 6 'python setup.py --with-libyaml install'. 7 Then you may use a fast LibYAML-based parser and emitter as follows: 8 8 9 >>> yaml.load(stream, Loader=yaml.CLoader) 9 10 >>> yaml.dump(data, Dumper=yaml.CDumper) -
pyyaml/trunk/announcement.msg
r253 r279 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 5: YAML parser and emitter for Python3 Subject: [ANN] PyYAML-3.06: YAML parser and emitter for Python 4 4 5 5 ======================== 6 Announcing PyYAML-3.0 56 Announcing PyYAML-3.06 7 7 ======================== 8 8 … … 15 15 ======= 16 16 17 * Windows binary packages were built with LibYAML trunk. 18 * Fixed a bug that prevent processing a live stream of YAML documents in timely 19 manner (Thanks edward(at)sweetbytes(dot)net). 20 * Fixed a bug when the path in add_path_resolver contains boolean values 21 (Thanks jstroud(at)mbi(dot)ucla(dot)edu). 22 * Fixed loss of microsecond precision in timestamps 23 (Thanks edemaine(at)mit(dot)edu). 24 * Fixed loading an empty YAML stream. 25 * A number of smaller fixes and improvements 26 (see http://pyyaml.org/wiki/PyYAML#History for more details). 17 * Fixed a dot '.' character being recognized as !!float. 18 * Fixed exceptions produced by LibYAML bindings. 19 * 'yaml.load()' raises an exception if the input stream contains 20 more than one YAML document. 21 * Use setuptools for setup.py. If you want to build optional LibYAML 22 bindings, run 'python setup.py --with-libyaml install'. Building 23 LibYAML bindings no longer requires PyRex installed. 24 * Windows binary packages are built against the LibYAML stable branch. 27 25 28 26 … … 33 31 PyYAML documentation: http://pyyaml.org/wiki/PyYAMLDocumentation 34 32 35 TAR.GZ package: http://pyyaml.org/download/pyyaml/PyYAML-3.0 5.tar.gz36 ZIP package: http://pyyaml.org/download/pyyaml/PyYAML-3.0 5.zip33 TAR.GZ package: http://pyyaml.org/download/pyyaml/PyYAML-3.06.tar.gz 34 ZIP package: http://pyyaml.org/download/pyyaml/PyYAML-3.06.zip 37 35 Windows installer: 38 http://pyyaml.org/download/pyyaml/PyYAML-3.05.win32-py2.3.exe 39 http://pyyaml.org/download/pyyaml/PyYAML-3.05.win32-py2.4.exe 40 http://pyyaml.org/download/pyyaml/PyYAML-3.05.win32-py2.5.exe 36 http://pyyaml.org/download/pyyaml/PyYAML-3.06.win32-py2.3.exe 37 http://pyyaml.org/download/pyyaml/PyYAML-3.06.win32-py2.4.exe 38 http://pyyaml.org/download/pyyaml/PyYAML-3.06.win32-py2.5.exe 39 http://pyyaml.org/download/pyyaml/PyYAML-3.06.win32-py2.6.exe 41 40 42 41 PyYAML SVN repository: http://svn.pyyaml.org/pyyaml
Note: See TracChangeset
for help on using the changeset viewer.
