Changeset 124
- Timestamp:
- 03/25/06 16:35:32 (2 years ago)
- Files:
-
- pysyck/trunk/README.txt (modified) (2 diffs)
- pysyck/trunk/setup.py (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
pysyck/trunk/README.txt
r67 r124 23 23 PySyck_ is aimed to update the current Python bindings for Syck. The new 24 24 bindings provide a wrapper for the Syck emitter and give access to YAML 25 representation graphs. Hopefully it will not leak memory as well.25 representation graphs. 26 26 27 27 PySyck_ may be used for various tasks, in particular, as a replacement of the … … 885 885 ======= 886 886 887 * PySyck-0.61.2 (2006-03-26): 888 889 - ``ext/_syckmodule.c``: fix a leak in the parser (thanks, jbj). 890 - ``setup.py``: set the development status to Production/Stable. 891 887 892 * PySyck-0.61.1 (2006-03-15): 888 893 pysyck/trunk/setup.py
r123 r124 1 1 2 2 NAME = 'PySyck' 3 VERSION = '0.61. 1'3 VERSION = '0.61.2' 4 4 DESCRIPTION = "Python bindings for the Syck YAML parser and emitter" 5 5 LONG_DESCRIPTION = """\ … … 28 28 from distutils.command.build_ext import build_ext 29 29 from distutils.errors import CCompilerError, CompileError, LinkError 30 31 import sys32 if sys.version < '2.2.4':33 from distutils.dist import DistributionMetadata34 DistributionMetadata.classifiers = None35 DistributionMetadata.download_url = None36 30 37 31 import os
