Changeset 360
- Timestamp:
- 08/29/09 20:07:20 (4 years ago)
- Location:
- pyyaml/trunk
- Files:
-
- 5 edited
-
CHANGES (modified) (1 diff)
-
announcement.msg (modified) (3 diffs)
-
lib/yaml/__init__.py (modified) (1 diff)
-
lib3/yaml/__init__.py (modified) (1 diff)
-
setup.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
pyyaml/trunk/CHANGES
r336 r360 1 1 2 2 For a complete Subversion changelog, see 'http://pyyaml.org/log/pyyaml'. 3 4 5 3.09 (2009-08-31) 6 ----------------- 7 8 * Fixed an obscure scanner error not reported when there is 9 no line break at the end of the stream (Thank to Ingy). 10 * Fixed use of uninitialized memory when emitting anchors with 11 LibYAML bindings (Thank to cegner(at)yahoo-inc(dot)com). 12 * Fixed emitting incorrect BOM characters for UTF-16 (Thank to 13 Valentin Nechayev) 14 * Fixed the emitter for folded scalars not respecting the preferred 15 line width (Thank to Ingy). 16 * Fixed a subtle ordering issue with emitting '%TAG' directives 17 (Thank to Andrey Somov). 18 * Fixed performance regression with LibYAML bindings. 3 19 4 20 -
pyyaml/trunk/announcement.msg
r336 r360 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, python-porting@python.org 3 Subject: [ANN] PyYAML-3.0 8: Now with Python 3 support3 Subject: [ANN] PyYAML-3.09: YAML parser and emitter for Python 4 4 5 5 ======================== 6 Announcing PyYAML-3.0 86 Announcing PyYAML-3.09 7 7 ======================== 8 8 9 A new release of PyYAML is now available:9 A new bug fix release of PyYAML is now available: 10 10 11 11 http://pyyaml.org/wiki/PyYAML 12 12 13 This release features a complete support for Python 3. For 14 compatibility notes between Python 2 and Python 3 versions, 15 please see 13 Note that PyYAML supports both Python 2 and Python 3. For 14 compatibility notes, please see 16 15 17 16 http://pyyaml.org/wiki/PyYAMLDocumentation#Python3support … … 21 20 ======= 22 21 23 * Python 3 support (Thank to Erick Tryzelaar). 24 * Use Cython instead of Pyrex to build LibYAML bindings. Note 25 that the source package is distributed with a pre-generated 26 '_yaml.c' file so you don't need Cython installed to build 27 LibYAML bindings. 28 * Refactored support for unicode and byte input/output streams. 22 * Fixed use of uninitialized memory when emitting anchors with 23 LibYAML bindings (Thank to cegner(at)yahoo-inc(dot)com). 24 * Fixed emitting incorrect BOM characters for UTF-16 (Thank to 25 Valentin Nechayev) 26 * Fixed the emitter for folded scalars not respecting the preferred 27 line width (Thank to Ingy). 28 * Fixed a subtle ordering issue with emitting '%TAG' directives 29 (Thank to Andrey Somov). 30 * Fixed performance regression with LibYAML bindings. 29 31 30 32 … … 35 37 PyYAML documentation: http://pyyaml.org/wiki/PyYAMLDocumentation 36 38 37 TAR.GZ package: http://pyyaml.org/download/pyyaml/PyYAML-3.0 8.tar.gz38 ZIP package: http://pyyaml.org/download/pyyaml/PyYAML-3.0 8.zip39 TAR.GZ package: http://pyyaml.org/download/pyyaml/PyYAML-3.09.tar.gz 40 ZIP package: http://pyyaml.org/download/pyyaml/PyYAML-3.09.zip 39 41 Windows installers: 40 http://pyyaml.org/download/pyyaml/PyYAML-3.08.win32-py2.3.exe 41 http://pyyaml.org/download/pyyaml/PyYAML-3.08.win32-py2.4.exe 42 http://pyyaml.org/download/pyyaml/PyYAML-3.08.win32-py2.5.exe 43 http://pyyaml.org/download/pyyaml/PyYAML-3.08.win32-py2.6.exe 44 http://pyyaml.org/download/pyyaml/PyYAML-3.08.win32-py3.0.exe 42 http://pyyaml.org/download/pyyaml/PyYAML-3.09.win32-py2.3.exe 43 http://pyyaml.org/download/pyyaml/PyYAML-3.09.win32-py2.4.exe 44 http://pyyaml.org/download/pyyaml/PyYAML-3.09.win32-py2.5.exe 45 http://pyyaml.org/download/pyyaml/PyYAML-3.09.win32-py2.6.exe 46 http://pyyaml.org/download/pyyaml/PyYAML-3.09.win32-py3.0.exe 47 http://pyyaml.org/download/pyyaml/PyYAML-3.09.win32-py3.1.exe 45 48 46 49 PyYAML SVN repository: http://svn.pyyaml.org/pyyaml -
pyyaml/trunk/lib/yaml/__init__.py
r353 r360 9 9 from dumper import * 10 10 11 __version__ = '3.0 8'11 __version__ = '3.09' 12 12 13 13 try: -
pyyaml/trunk/lib3/yaml/__init__.py
r353 r360 9 9 from .dumper import * 10 10 11 __version__ = '3.0 8'11 __version__ = '3.09' 12 12 try: 13 13 from .cyaml import * -
pyyaml/trunk/setup.py
r356 r360 1 1 2 2 NAME = 'PyYAML' 3 VERSION = '3.0 8'3 VERSION = '3.09' 4 4 DESCRIPTION = "YAML parser and emitter for Python" 5 5 LONG_DESCRIPTION = """\
Note: See TracChangeset
for help on using the changeset viewer.
