summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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):