Fix StringIO import for Python 3

This commit is contained in:
Ines Montani 2017-01-11 14:07:48 +01:00
parent 69998f216b
commit 928db7e419
1 changed files with 1 additions and 1 deletions

View File

@ -13,7 +13,7 @@ from ..hu import Hungarian
from ..tokens import Doc
from ..attrs import ORTH, TAG, HEAD, DEP
from StringIO import StringIO
from io import StringIO
import pytest