Skip to content

Commit 57a1a39

Browse files
authored
Add back six.StringIO (Python 2) (#4413)
This was accidentally removed in #4287.
1 parent 7c44436 commit 57a1a39

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

third_party/2/six/__init__.pyi

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import typing
55
import unittest
66
from __builtin__ import unichr as unichr
77
from functools import wraps as wraps
8-
from StringIO import StringIO as BytesIO
8+
from StringIO import StringIO as BytesIO, StringIO as StringIO
99
from typing import (
1010
Any,
1111
AnyStr,

0 commit comments

Comments
 (0)