0
0
mirror of https://github.com/python/cpython.git synced 2024-11-25 01:20:47 +01:00
cpython/Lib/lib-stdwin/filewin.py
1991-02-19 13:02:13 +00:00

19 lines
349 B
Python

# Module 'filewin'
# File windows, a subclass of textwin (which is a subclass of gwin)
import textwin
from util import readfile
# FILE WINDOW
def open_readonly(fn): # Open a file window
w = textwin.open_readonly(fn, readfile(fn))
w.fn = fn
return w
def open(fn): # Open a file window
w = textwin.open(fn, readfile(fn))
w.fn = fn
return w