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

15 lines
235 B
Python
Raw Normal View History

1990-10-13 20:23:40 +01:00
# Module 'anywin'
# Open a file or directory in a window
import dirwin
import filewin
1992-03-31 21:04:48 +02:00
import os
1990-10-13 20:23:40 +01:00
def open(name):
print 'opening', name, '...'
1992-03-31 21:04:48 +02:00
if os.path.isdir(name):
1990-10-13 20:23:40 +01:00
w = dirwin.open(name)
else:
w = filewin.open(name)
return w