Add back six.StringIO (Python 2) (#4413)

This was accidentally removed in #4287.
This commit is contained in:
Jukka Lehtosalo
2020-08-07 17:41:48 +01:00
committed by GitHub
parent 7c444365f2
commit 57a1a3937a

View File

@@ -5,7 +5,7 @@ import typing
import unittest
from __builtin__ import unichr as unichr
from functools import wraps as wraps
from StringIO import StringIO as BytesIO
from StringIO import StringIO as BytesIO, StringIO as StringIO
from typing import (
Any,
AnyStr,