mirror of
https://github.com/github/octodns.git
synced 2024-05-11 05:55:00 +00:00
11 lines
167 B
Python
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
|