Merge remote-tracking branch 'refs/remotes/honnibal/master'

This commit is contained in:
maxirmx 2015-10-13 12:09:01 +03:00
commit 2768213683
1 changed files with 5 additions and 1 deletions

View File

@ -11,7 +11,6 @@ import io
import math
import json
import tempfile
import copy_reg
from .lexeme cimport EMPTY_LEXEME
from .lexeme cimport Lexeme
@ -29,6 +28,11 @@ from . import util
from .serialize.packer cimport Packer
from .attrs cimport PROB
try:
import copy_reg
except ImportError:
import copyreg as copy_reg
DEF MAX_VEC_SIZE = 100000