Re: Re: PyRun_SimpleString no sys.argv[0]

2006-12-07 Thread Gabriel Genellina
Please keep posting on this list, surely other people can help more than I. At Thursday 7/12/2006 06:16, Ingo Wolf wrote: > At Wednesday 6/12/2006 12:23, iwl wrote: > > >I'm just starting with Python - would like to embed it in my > >windows-programm as an script-processor. For tests I use easy

Re: PyRun_SimpleString no sys.argv[0]

2006-12-06 Thread Gabriel Genellina
At Wednesday 6/12/2006 12:23, iwl wrote: I'm just starting with Python - would like to embed it in my windows-programm as an script-processor. For tests I use easygui some easy-wrapper for the py-tck-stuff. Looks a bit strange for me. If the GUI will be in Python, I think you could do things

PyRun_SimpleString no sys.argv[0]

2006-12-06 Thread iwl
Hello, I'm just starting with Python - would like to embed it in my windows-programm as an script-processor. For tests I use easygui some easy-wrapper for the py-tck-stuff. PyRun_SimpleString("from easygui import *\n"); PyRun_SimpleString("import sys\n"); PyRun_SimpleString("msgbox()\n"); Tra