mirror of
				https://github.com/explosion/spaCy.git
				synced 2025-10-31 07:57:35 +03:00 
			
		
		
		
	
		
			
				
	
	
		
			13 lines
		
	
	
		
			276 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			276 B
		
	
	
	
		
			Python
		
	
	
	
	
	
| # coding: utf8
 | |
| from __future__ import unicode_literals
 | |
| from ...vocab import Vocab
 | |
| from ...tokens.doc import Doc
 | |
| 
 | |
| 
 | |
| def test_token_is_hashable():
 | |
|     doc = Doc(Vocab(), ['hello', 'world'])
 | |
|     token = doc[0]
 | |
|     s = set([token])
 | |
|     items = list(s)
 | |
|     assert items[0] is token
 |