Changeset 378
- Timestamp:
- 05/29/11 23:28:15 (2 years ago)
- Location:
- pyyaml/trunk
- Files:
-
- 6 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.cfg (modified) (1 diff)
-
setup.py (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
pyyaml/trunk/CHANGES
r360 r378 2 2 For a complete Subversion changelog, see 'http://pyyaml.org/log/pyyaml'. 3 3 4 3.10 (2011-05-30) 5 ----------------- 6 7 * Do not try to build LibYAML bindings on platforms other than CPython 8 (Thank to olt(at)bogosoft(dot)com). 9 * Clear cyclic references in the parser and the emitter 10 (Thank to kristjan(at)ccpgames(dot)com). 4 11 5 12 3.09 (2009-08-31) -
pyyaml/trunk/announcement.msg
r369 r378 1 From: Kirill Simonov <xi@ gamma.dn.ua>1 From: Kirill Simonov <xi@resolvent.net> 2 2 To: python-list@python.org, python-announce@python.org, yaml-core@lists.sourceforge.net 3 Subject: [ANN] PyYAML-3. 09: YAML parser and emitter for Python3 Subject: [ANN] PyYAML-3.10: YAML parser and emitter for Python 4 4 5 5 ======================== 6 Announcing PyYAML-3. 096 Announcing PyYAML-3.10 7 7 ======================== 8 8 … … 11 11 http://pyyaml.org/wiki/PyYAML 12 12 13 Note that PyYAML supports both Python 2 and Python 3. For14 compatibility notes, please see15 16 http://pyyaml.org/wiki/PyYAMLDocumentation#Python3support17 18 13 19 14 Changes 20 15 ======= 21 16 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. 17 * Do not try to build LibYAML bindings on platforms other than CPython; 18 this fixed installation under Jython (Thank to olt(at)bogosoft(dot)com). 19 * Clear cyclic references in the parser and the emitter 20 (Thank to kristjan(at)ccpgames(dot)com). 21 * LibYAML bindings are rebuilt with the latest version of Cython. 31 22 32 23 … … 37 28 PyYAML documentation: http://pyyaml.org/wiki/PyYAMLDocumentation 38 29 39 TAR.GZ package: http://pyyaml.org/download/pyyaml/PyYAML-3. 09.tar.gz40 ZIP package: http://pyyaml.org/download/pyyaml/PyYAML-3. 09.zip30 TAR.GZ package: http://pyyaml.org/download/pyyaml/PyYAML-3.10.tar.gz 31 ZIP package: http://pyyaml.org/download/pyyaml/PyYAML-3.10.zip 41 32 Windows installers: 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 33 http://pyyaml.org/download/pyyaml/PyYAML-3.10.win32-py2.3.exe 34 http://pyyaml.org/download/pyyaml/PyYAML-3.10.win32-py2.4.exe 35 http://pyyaml.org/download/pyyaml/PyYAML-3.10.win32-py2.5.exe 36 http://pyyaml.org/download/pyyaml/PyYAML-3.10.win32-py2.6.exe 37 http://pyyaml.org/download/pyyaml/PyYAML-3.10.win32-py3.0.exe 38 http://pyyaml.org/download/pyyaml/PyYAML-3.10.win32-py3.1.exe 39 http://pyyaml.org/download/pyyaml/PyYAML-3.10.win32-py3.2.exe 48 40 49 41 PyYAML SVN repository: http://svn.pyyaml.org/pyyaml -
pyyaml/trunk/lib/yaml/__init__.py
r377 r378 9 9 from dumper import * 10 10 11 __version__ = '3. 09'11 __version__ = '3.10' 12 12 13 13 try: -
pyyaml/trunk/lib3/yaml/__init__.py
r377 r378 9 9 from .dumper import * 10 10 11 __version__ = '3. 09'11 __version__ = '3.10' 12 12 try: 13 13 from .cyaml import * -
pyyaml/trunk/setup.cfg
r356 r378 18 18 # The following options are used to build PyYAML Windows installer 19 19 # for Python 2.3 on my PC: 20 #include_dirs=../../../libyaml/tags/0.1. 3/include21 #library_dirs=../../../libyaml/tags/0.1. 3/win32/vc6/output/release/lib20 #include_dirs=../../../libyaml/tags/0.1.4/include 21 #library_dirs=../../../libyaml/tags/0.1.4/win32/vc6/output/release/lib 22 22 #define=YAML_DECLARE_STATIC 23 23 24 24 # The following options are used to build PyYAML Windows installer 25 25 # for Python 2.4 and Python 2.5 on my PC: 26 #include_dirs=../../../libyaml/tags/0.1. 3/include27 #library_dirs=../../../libyaml/tags/0.1. 3/win32/vs2003/output/release/lib26 #include_dirs=../../../libyaml/tags/0.1.4/include 27 #library_dirs=../../../libyaml/tags/0.1.4/win32/vs2003/output/release/lib 28 28 #define=YAML_DECLARE_STATIC 29 29 30 30 # The following options are used to build PyYAML Windows installer 31 # for Python 2.6, Python 3.0 and Python 3.1on my PC:32 #include_dirs=../../../libyaml/tags/0.1. 3/include33 #library_dirs=../../../libyaml/tags/0.1. 3/win32/vs2008/output/release/lib31 # for Python 2.6, 2.7, 3.0, 3.1 and 3.2 on my PC: 32 #include_dirs=../../../libyaml/tags/0.1.4/include 33 #library_dirs=../../../libyaml/tags/0.1.4/win32/vs2008/output/release/lib 34 34 #define=YAML_DECLARE_STATIC 35 35 -
pyyaml/trunk/setup.py
r376 r378 1 1 2 2 NAME = 'PyYAML' 3 VERSION = '3. 09'3 VERSION = '3.10' 4 4 DESCRIPTION = "YAML parser and emitter for Python" 5 5 LONG_DESCRIPTION = """\ … … 32 32 "Programming Language :: Python :: 2.5", 33 33 "Programming Language :: Python :: 2.6", 34 "Programming Language :: Python :: 2.7", 34 35 "Programming Language :: Python :: 3", 35 36 "Programming Language :: Python :: 3.0", 36 37 "Programming Language :: Python :: 3.1", 38 "Programming Language :: Python :: 3.2", 37 39 "Topic :: Software Development :: Libraries :: Python Modules", 38 40 "Topic :: Text Processing :: Markup",
Note: See TracChangeset
for help on using the changeset viewer.
