Re: Is there any python library that parse c++ source code statically

2011-03-15 Thread kuangye
Thank you guys. Seems it's rather complex. -- http://mail.python.org/mailman/listinfo/python-list

Is there any python library that parse c++ source code statically

2011-03-13 Thread kuangye
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.

Is there any python library that parse c++ source code statically

2011-03-13 Thread kuangye
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.

not pack methon in tkinter

2009-03-26 Thread kuangye
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