0
0
mirror of https://github.com/python/cpython.git synced 2024-11-24 08:52:25 +01:00
cpython/Mac/Lib/test/tdlg.py
1995-01-30 11:53:55 +00:00

16 lines
300 B
Python

# This program requires that a DLOG resource with ID=128 exists.
# You can make one with ResEdit if necessary.
from Res import *
from Dlg import *
ires = 128
def filter(*args): print 'filter:', args
d = GetNewDialog(ires, -1)
while 1:
n = ModalDialog(filter)
print 'item:', n
if n == 1: break