0
0
mirror of https://github.com/python/cpython.git synced 2024-11-28 16:45:42 +01:00
cpython/Lib/lib-stdwin/filewin.py

19 lines
349 B
Python
Raw Normal View History

1990-10-13 20:23:40 +01:00
# Module 'filewin'
# File windows, a subclass of textwin (which is a subclass of gwin)
import textwin
1991-02-19 14:02:13 +01:00
from util import readfile
1990-10-13 20:23:40 +01:00
# 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