Merge branch 'develop'

This commit is contained in:
ines 2017-04-07 17:36:23 +02:00
commit 887827fc6a
3 changed files with 1 additions and 4 deletions

View File

@ -107,7 +107,7 @@ TOKENIZER_INFIXES = (
r'(?<=[{al}])\.(?=[{au}])'.format(al=ALPHA_LOWER, au=ALPHA_UPPER),
r'(?<=[{a}]),(?=[{a}])'.format(a=ALPHA),
r'(?<=[{a}])[?";:=,.]*(?:{h})(?=[{a}])'.format(a=ALPHA, h=HYPHENS),
r'(?<=[{a}"])[:<>=](?=[{a}])'.format(a=ALPHA)
r'(?<=[{a}"])[:<>=/](?=[{a}])'.format(a=ALPHA)
]
)

View File

@ -5,8 +5,6 @@ from ...matcher import merge_phrase
import pytest
@pytest.mark.models
def test_issue758():
'''Test parser transition bug after label added.'''

View File

@ -4,7 +4,6 @@ from __future__ import unicode_literals
import pytest
@pytest.mark.xfail
@pytest.mark.parametrize('text', ["want/need"])
def test_issue891(en_tokenizer, text):
"""Test that / infixes are split correctly."""