1
0
mirror of https://github.com/spaam/svtplay-dl.git synced 2024-11-24 12:15:40 +01:00
svtplay-dl/lib/svtplay_dl/utils/io.py
2014-01-25 22:57:49 +01:00

16 lines
382 B
Python

# ex:ts=4:sw=4:sts=4:et
# -*- tab-width: 4; c-basic-offset: 4; indent-tabs-mode: nil -*-
# Pylint does not seem to handle conditional imports
# pylint: disable=F0401
# pylint: disable=W0611
# pylint: disable=E0611
from __future__ import absolute_import
from svtplay_dl.utils import is_py3
if is_py3:
from io import BytesIO as StringIO
else:
from StringIO import StringIO