tests: Drop compatibility with python 2 from TAP test runner

This commit is contained in:
Tomasz Miąsko 2018-12-12 00:00:00 +00:00
parent af39a37312
commit 3b7f7a4ed9

View File

@ -28,10 +28,7 @@
import unittest
import sys
import base64
if sys.hexversion >= 0x03000000:
from io import StringIO
else:
from StringIO import StringIO
from io import StringIO
# Log modes
class LogMode(object) :