Staging
v0.5.1
https://github.com/python/cpython
Raw File
Tip revision: c6143338b399ee4164321af027144d714597528b authored by cvs2svn on 01 July 1996, 18:34:03 UTC
This commit was manufactured by cvs2svn to create tag 'r14beta1'.
Tip revision: c614333
filewin.py
# 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
back to top