mirror of
				https://github.com/explosion/spaCy.git
				synced 2025-10-30 23:47:31 +03:00 
			
		
		
		
	
		
			
				
	
	
		
			22 lines
		
	
	
		
			669 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			669 B
		
	
	
	
		
			Python
		
	
	
	
	
	
| # coding: utf8
 | |
| from __future__ import unicode_literals
 | |
| 
 | |
| import pytest
 | |
| from spacy.lang.en import English
 | |
| from spacy.matcher import Matcher, PhraseMatcher
 | |
| 
 | |
| 
 | |
| def test_issue3410():
 | |
|     texts = ["Hello world", "This is a test"]
 | |
|     nlp = English()
 | |
|     matcher = Matcher(nlp.vocab)
 | |
|     phrasematcher = PhraseMatcher(nlp.vocab)
 | |
|     with pytest.deprecated_call():
 | |
|         docs = list(nlp.pipe(texts, n_threads=4))
 | |
|     with pytest.deprecated_call():
 | |
|         docs = list(nlp.tokenizer.pipe(texts, n_threads=4))
 | |
|     with pytest.deprecated_call():
 | |
|         list(matcher.pipe(docs, n_threads=4))
 | |
|     with pytest.deprecated_call():
 | |
|         list(phrasematcher.pipe(docs, n_threads=4))
 |