mirror of
				https://github.com/explosion/spaCy.git
				synced 2025-11-04 09:57:26 +03:00 
			
		
		
		
	
		
			
				
	
	
		
			13 lines
		
	
	
		
			231 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			231 B
		
	
	
	
		
			Python
		
	
	
	
	
	
# coding: utf-8
 | 
						|
from __future__ import unicode_literals
 | 
						|
 | 
						|
from ...vocab import Vocab
 | 
						|
 | 
						|
 | 
						|
def test_issue617():
 | 
						|
    """Test loading Vocab with string"""
 | 
						|
    try:
 | 
						|
        vocab = Vocab.load('/tmp/vocab')
 | 
						|
    except IOError:
 | 
						|
        pass
 |