#!/usr/local/bin/python ## # Special Windows 2 # ----------------- # The window created by this program can be resized and closed, # but does not have a minimize or maximize button. ## from graphapp import * def main(): w = newwindow("Special Window", rect(0,0,300,250), Titlebar + Closebox + Resize) show(w) mainloop() main()