mirror of
				https://github.com/explosion/spaCy.git
				synced 2025-10-31 07:57:35 +03:00 
			
		
		
		
	Fix class to pickling works as expected
This commit is contained in:
		
							parent
							
								
									5b7b2a498d
								
							
						
					
					
						commit
						b6deef80f8
					
				|  | @ -244,11 +244,7 @@ def test_issue4849(): | ||||||
|     assert count_ents == 2 |     assert count_ents == 2 | ||||||
| 
 | 
 | ||||||
| 
 | 
 | ||||||
| def test_issue4903(): | class CustomPipe: | ||||||
|     """Ensure that this runs correctly and doesn't hang or crash on Windows / |  | ||||||
|     macOS.""" |  | ||||||
| 
 |  | ||||||
|     class CustomPipe: |  | ||||||
|     name = "my_pipe" |     name = "my_pipe" | ||||||
| 
 | 
 | ||||||
|     def __init__(self): |     def __init__(self): | ||||||
|  | @ -270,6 +266,10 @@ def test_issue4903(): | ||||||
|     def _get_my_ext(span): |     def _get_my_ext(span): | ||||||
|         return str(span.end) |         return str(span.end) | ||||||
| 
 | 
 | ||||||
|  | 
 | ||||||
|  | def test_issue4903(): | ||||||
|  |     """Ensure that this runs correctly and doesn't hang or crash on Windows / | ||||||
|  |     macOS.""" | ||||||
|     nlp = English() |     nlp = English() | ||||||
|     custom_component = CustomPipe() |     custom_component = CustomPipe() | ||||||
|     nlp.add_pipe(nlp.create_pipe("sentencizer")) |     nlp.add_pipe(nlp.create_pipe("sentencizer")) | ||||||
|  |  | ||||||
		Loading…
	
		Reference in New Issue
	
	Block a user