On 12-jul-2005, at 18:17, David Cairns wrote: > Hi everybody, > > At WWDC, I saw the Python in OS X talk, and I am really interested in > integrating PyInterpreterView in my application, in order to implement > a sort of scripting/debugging system, but I can't seem to find the > .palette file the widget is contained in. Is this something else I > need to download and/or install ?
You can download the sample code here: http://pythonmac.org/wwdc2005/ > > Also, how would i go about setting up my application so that the > PyInterpreterView would be able to access my application's globals? PyObjC cannot automaticly see globals. The easiest way to access them from python is writing a class with methods for getting/setting the globals. Ronald > Any help is greatly appreciated. > > -- david > _______________________________________________ > Pythonmac-SIG maillist - [email protected] > http://mail.python.org/mailman/listinfo/pythonmac-sig > _______________________________________________ Pythonmac-SIG maillist - [email protected] http://mail.python.org/mailman/listinfo/pythonmac-sig
