summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorxi <xi@18f92427-320e-0410-9341-c67f048884a3>2006-05-15 11:25:46 +0000
committerxi <xi@18f92427-320e-0410-9341-c67f048884a3>2006-05-15 11:25:46 +0000
commite7bccd96bf8b71216a7bd9237beee5c206f10912 (patch)
treeedf1e30b71651ae5c146f4ccd6d4a9fe613fff78
parent2292eac7fd1afd15f4c6376b3eb66b0b68272dae (diff)
downloadpyyaml-e7bccd96bf8b71216a7bd9237beee5c206f10912.tar.gz
Release: 3.02.3.02
git-svn-id: http://svn.pyyaml.org/pyyaml/tags/3.02@167 18f92427-320e-0410-9341-c67f048884a3
-rw-r--r--Makefile2
-rw-r--r--announcement.msg7
-rw-r--r--tests/test_resolver.py2
3 files changed, 7 insertions, 4 deletions
diff --git a/Makefile b/Makefile
index 6c38d53..d35a4ca 100644
--- a/Makefile
+++ b/Makefile
@@ -19,6 +19,8 @@ test: build
dist: build
${PYTHON} setup.py sdist --formats=zip,gztar
+
+windist: build
${PYTHON} setup.py bdist_wininst
clean:
diff --git a/announcement.msg b/announcement.msg
index ed2ff61..5dd535e 100644
--- a/announcement.msg
+++ b/announcement.msg
@@ -14,10 +14,11 @@ A new bug-fix release of PyYAML is now available:
Changes
=======
-* Fix win32 installer. Apparently bdist_wininst does not work under Linux.
+* Fix win32 installer. Apparently bdist_wininst does not work well under
+ Linux.
* Fix a bug in add_path_resolver.
-* Add the yaml_hl example. Try to run on a color terminal:
- `python yaml_hl.py <any_document.yaml`
+* Add the yaml-highlight example. Try to run on a color terminal:
+ `python yaml_hl.py <any_document.yaml`.
Resources
diff --git a/tests/test_resolver.py b/tests/test_resolver.py
index 79f4ecf..4e14010 100644
--- a/tests/test_resolver.py
+++ b/tests/test_resolver.py
@@ -21,7 +21,7 @@ add_path_resolver(u'!root/key11/key12/*', ['key11', 'key12'],
add_path_resolver(u'!root/key21/1/*', ['key21', 1],
Loader=MyLoader, Dumper=MyDumper)
-add_path_resolver(u'!root/key31/*/*/key14/map', ['key31', None, None, 'key14'], map,
+add_path_resolver(u'!root/key31/*/*/key14/map', ['key31', None, None, 'key14'], dict,
Loader=MyLoader, Dumper=MyDumper)
class TestResolver(test_appliance.TestAppliance):