1
0
mirror of https://github.com/github/octodns.git synced 2024-05-11 05:55:00 +00:00
Files
github-octodns/octodns/compat.py
Ross McFarland 9e4c120c3e StringIO compat
2019-07-29 08:44:35 -07:00

11 lines
167 B
Python

#
# Python 2/3 compat bits
#
try: # pragma: no cover
from StringIO import StringIO
except ImportError: # pragma: no cover
from io import StringIO
StringIO