[Pythonmac-SIG] buildapplication problem in 2.0

Terry Acree tea2@nysaes.cornell.edu
Sun, 12 Nov 2000 17:16:27 -0500


 Hello all

I am a new commer to python but my simple experiences with 1.52 and 1.6
were compelling. Trying to use 2.0 I have the following problem with
BuildApplication the simplest code.  e.g.

from Tkinter import *

root = Tk()     # define toplevel window
root.title('CharmAnalysis')   # Label window
root.geometry('788x530+0+20')   # define and locate window

mBar = Frame(root, relief=RAISED, borderwidth=2)
mBar.pack(fill=X)

Label(root, text='Here we go charming a snake').pack(pady=200) # scrible

root.mainloop()     # make it happen ?

****
I always get this message:

***
Traceback (most recent call last):
  File "Lugano:Monty:Python 2.0:Mac:scripts:BuildApplication.py", line
147, in ?
    main()
  File "Lugano:Monty:Python 2.0:Mac:scripts:BuildApplication.py", line
51, in main
    buildapplication()
  File "Lugano:Monty:Python 2.0:Mac:scripts:BuildApplication.py", line
73, in buildapplication
    architecture, ok = interact(tf)
ValueError: unpack sequence of wrong size
***

Any ideas? Terry Acree