Thank you guys.
Seems it's rather complex.
--
http://mail.python.org/mailman/listinfo/python-list
Hi, all. I need to generate other programming language source code
from C++ source code for a project. To achieve this, the first step is
to "understand" the c++ source code at least in formally. Thus is
there any library to parse the C++ source code statically. So I can
developer on this library.
Hi, all. I need to generate other programming language source code
from C++ source code for a project. To achieve this, the first step is
to "understand" the c++ source code at least in formally. Thus is
there any library to parse the C++ source code statically. So I can
developer on this library.
Hi, all. Why can not i find the pack method in tkinter.
code segment:
from Tkinter import *
root = Tk()
w = Label(root, text="Hello, world!")
w.pack() ###I can not find this method in Label and Label's ancesters
##So where does pack function come from??
root.mainloop()
--
http://mail.python