예제 #1
0
def test_space():
    assert not is_punct(' ')
예제 #2
0
def test_comma():
    assert is_punct(',')
예제 #3
0
def test_letter():
    assert not is_punct('a')
예제 #4
0
파일: test_is_punct.py 프로젝트: Afey/spaCy
def test_comma():
    assert is_punct(',')
예제 #5
0
파일: test_is_punct.py 프로젝트: Afey/spaCy
def test_letter():
    assert not is_punct('a')
예제 #6
0
파일: test_is_punct.py 프로젝트: Afey/spaCy
def test_space():
    assert not is_punct(' ')