I want run Python GUI program on MFC. So I coded this
def start():
global Tkinter
from Tkinter import *
root = Tk()
w = Label(root, text="Hello, world!")
w.pack()
but It returns error at
rc = PyObject_CallObject(func, NULL);
What is problem?
--
http://mail.python.org/mailman/listinfo/python-list
