mirror of
				https://github.com/python/cpython.git
				synced 2025-11-04 07:31:38 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			20 lines
		
	
	
	
		
			388 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
	
		
			388 B
		
	
	
	
		
			Python
		
	
	
	
	
	
# Module 'filewin'
 | 
						|
# File windows, a subclass of textwin (which is a subclass of gwin)
 | 
						|
 | 
						|
import textwin
 | 
						|
import builtin
 | 
						|
 | 
						|
 | 
						|
# FILE WINDOW
 | 
						|
 | 
						|
def open_readonly(fn): # Open a file window
 | 
						|
	fp = builtin.open(fn, 'r')
 | 
						|
	w = textwin.open_readonly(fn, fp.read())
 | 
						|
	w.fn = fn
 | 
						|
	return w
 | 
						|
 | 
						|
def open(fn): # Open a file window
 | 
						|
	fp = builtin.open(fn, 'r')
 | 
						|
	w = textwin.open(fn, fp.read())
 | 
						|
	w.fn = fn
 | 
						|
	return w
 |