mirror of
https://github.com/explosion/spaCy.git
synced 2024-11-11 04:08:09 +03:00
* Fix StringIO for Python3 in tests
This commit is contained in:
parent
719221a215
commit
e3f97cf938
|
@ -1,6 +1,6 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
from __future__ import unicode_literals
|
||||
import StringIO
|
||||
import io
|
||||
import pickle
|
||||
|
||||
from spacy.lemmatizer import Lemmatizer, read_index, read_exc
|
||||
|
@ -46,7 +46,7 @@ def test_smart_quotes(lemmatizer):
|
|||
|
||||
|
||||
def test_pickle_lemmatizer(lemmatizer):
|
||||
file_ = StringIO.StringIO()
|
||||
file_ = io.BytesIO()
|
||||
pickle.dump(lemmatizer, file_)
|
||||
|
||||
file_.seek(0)
|
||||
|
|
Loading…
Reference in New Issue
Block a user