diff options
author | Anthon van der Neut <anthon@mnt.org> | 2017-03-22 15:53:24 +0100 |
---|---|---|
committer | Anthon van der Neut <anthon@mnt.org> | 2017-03-22 15:53:24 +0100 |
commit | 40c95ca1b92ced97ba85b1a1dd5b46754f6ab0c7 (patch) | |
tree | dc52888ff411545a6546fc1638ecd242aeb25247 /util.py | |
parent | c15232bf77e29c1e739d8632cd3d2a48909c4f05 (diff) | |
download | ruamel.yaml-40c95ca1b92ced97ba85b1a1dd5b46754f6ab0c7.tar.gz |
fix issue 106, Text undefined in 3.5.10.14.1
Reported by Charles Bouchard-L?gar?
Diffstat (limited to 'util.py')
-rw-r--r-- | util.py | 7 |
1 files changed, 5 insertions, 2 deletions
@@ -6,10 +6,13 @@ some helper functions that might be generally useful from __future__ import absolute_import, print_function -from typing import Any, Dict, Optional, List, Text # NOQA +import sys from .compat import text_type, binary_type -from .compat import StreamTextType, StringIO # NOQA + +if sys.version_info >= (3, 5, 2): + from typing import Any, Dict, Optional, List, Text # NOQA + from .compat import StreamTextType # NOQA # originally as comment |