diff options
author | Anthon van der Neut <anthon@mnt.org> | 2017-04-19 15:13:02 +0200 |
---|---|---|
committer | Anthon van der Neut <anthon@mnt.org> | 2017-04-19 15:13:02 +0200 |
commit | 870b961a3a6d72d8c7569cbc637c6cc553c1d907 (patch) | |
tree | 4185c36062b9b8c504075658b8dd5303285f3a20 /comments.py | |
parent | e3663d2b81399576b5a4edca9820971bf801e66a (diff) | |
download | ruamel.yaml-870b961a3a6d72d8c7569cbc637c6cc553c1d907.tar.gz |
fix issue #116: Text not available in 3.5.0/3.5.10.14.8
If this solves the issue for you, please close it.
Diffstat (limited to 'comments.py')
-rw-r--r-- | comments.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/comments.py b/comments.py index 1aa6222..6f6d3ee 100644 --- a/comments.py +++ b/comments.py @@ -8,13 +8,16 @@ these are not really related, formatting could be factored out as a separate base """ -from typing import Any, Dict, Optional, List, Union # NOQA import copy from collections import MutableSet, Sized, Set from ruamel.yaml.compat import ordereddict, PY2 +import sys +if sys.version_info >= (3, 5, 2): + from typing import Any, Dict, Optional, List, Union # NOQA + __all__ = ["CommentedSeq", "CommentedKeySeq", "CommentedMap", "CommentedOrderedMap", "CommentedSet", 'comment_attrib', 'merge_attrib'] |