diff options
author | Matěj Cepl <mcepl@redhat.com> | 2012-07-18 00:03:54 +0200 |
---|---|---|
committer | Matěj Cepl <mcepl@redhat.com> | 2013-08-22 18:41:49 +0200 |
commit | db97438a415488eda218617cf161bfdf8e2c1586 (patch) | |
tree | cca6de195ee3b540a4bb0f532805ea4b47d8e8a7 | |
parent | dbd47fe3e0002d9a9c1975075d7435a15b87fb51 (diff) | |
download | yamlish-db97438a415488eda218617cf161bfdf8e2c1586.tar.gz |
Just changing git repository of the package.0.10
-rw-r--r-- | setup.py | 2 | ||||
-rw-r--r-- | test/__init__.py | 2 | ||||
-rw-r--r-- | yamlish.py | 8 |
3 files changed, 6 insertions, 6 deletions
@@ -43,7 +43,7 @@ setup( description='Python implementation of YAMLish', author='Matěj Cepl', author_email='mcepl@redhat.com', - url='https://gitorious.org/yamlish', + url='http://luther.ceplovi.cz/git/?p=yamlish.git;a=summary', py_modules=['yamlish'], long_description=read("README.txt"), keywords=['TAP', 'YAML', 'yamlish'], diff --git a/test/__init__.py b/test/__init__.py index 05ba3b2..1c5c139 100644 --- a/test/__init__.py +++ b/test/__init__.py @@ -41,7 +41,7 @@ def _create_input_test(test_src, tested_function): logging.debug("test_src['out'] = %s", unicode(test_src['out'])) self.assertEqual(got, want, """Result matches expected = %s - + observed = %s """ % (want, got)) @@ -24,7 +24,7 @@ Easy YAML serialisation compatible with TAP format. Port of `Data::YAML Perl module <https://github.com/AndyA/Data--YAML>`, satisfying all its tests, intended to be used for support of `TAP <http://testanything.org/>` data format. Port of the original -documentation follows. +documentation follows. The syntax accepted by this module is a subset of `YAML <http://yaml.org>`. @@ -37,7 +37,7 @@ specification is huge. This module implements a small subset of the complete syntax trading completeness for compactness and simplicity. This restricted syntax is known (to me at least) as 'YAMLish'. -These examples demonstrates the full range of supported syntax. +These examples demonstrates the full range of supported syntax. All YAML documents must begin with '---' and end with a line containing '...'. @@ -113,7 +113,7 @@ import logging import yaml __docformat__ = 'reStructuredText' -__version__ = "0.9" +__version__ = "0.10" __author__ = u"Matěj Cepl <mcepl_at_redhat_dot_com>" class _YamlishLoader(yaml.loader.SafeLoader): @@ -128,7 +128,7 @@ class _YamlishLoader(yaml.loader.SafeLoader): @classmethod def remove_implicit_resolver(cls, tag): """ - Remove an implicit resolver from a Loader class identified by its tag. + Remove an implicit resolver from a Loader class identified by its tag. """ if not 'yaml_implicit_resolvers' in cls.__dict__: cls.yaml_implicit_resolvers = cls.yaml_implicit_resolvers.copy() |