
Multithreaded C API Python questions - Post.Byes
Nov 9, 2006 · Hi > A couple of mulithreaded C API python questions: > I) The PyGILState_Ensu re () simply ensures python api call ability, it doesnt actually lock the GIL, right? > PyGILState_STAT E …
Stopping a fucntion from printing its output on screen
Oct 17, 2007 · Hi, in my program i need to call a couple of functions that do some stuff but they always print their output on screen. But I don't want them to print anything on the screen. Is there any way I …
[CherryPy]Serve dynamic binary file in cherrypy? - Post.Byes
Jul 18, 2005 · Hi, After lookup in cherrypy site and google for a while, I haven't found any information about cherrypy how to serve dynamic binary file (some generated charts).Is there any easy way to …
Simple guide to using py2exe - Post.Byes
Dec 17, 2006 · Copy HelloWorld.exe to another computer (without Python on it), and run it there. Voila. A few notes: py2exe just converted your 4k .py file into a 3.23MB .exe file, because it bundled a …
Getting started with Crystal Reports...little help in the far court.
Jan 8, 2007 · I am not that familiar with Crystal Reports, but having read some other posts I know that the way to integrate the API with Python is through the COM interface provide by win32all. However, …
Getting value from Tkinter entry widget: variable scope difficulty
Nov 20, 2006 · Re: Getting value from Tkinter entry widget: variable scope difficulty Kevin, if the present value of searchterm is what you want, I suggest you make a class class Kgui: def __init__ (self) : # …
UTF-8 / German, Scandinavian letters - is it really this difficult ...
Jul 18, 2005 · Re: UTF-8 / German, Scandinavian letters - is it really this difficult??Linu x & Windows XP Mike Dee wrote: [color=blue] > If I have this in the beginning of my Python script in Linux: > > …
How to execute an EXE via os.system () with spaces in the directory ...
Dec 4, 2005 · I am trying to run an exe within a python script, but I'm having trouble with spaces in the directory name. The following example will display the usage statement of the program, so I know …
Xemacs syntax highlighting - Post.Byes
Jul 18, 2005 · Re: Xemacs syntax highlighting Jay> I use xemacs and syntax highlighting for my IDE, but I'm not a big Jay> fan of the default syntax highlighting colors. For instance, in Jay> 'def fun ():' …
Declaring self in PyObject_CallMethod - Post.Byes
Jul 19, 2005 · Calling a python method from C++ has the following signature: PyObject * PyObject_CallMethod(PyObject *self, char *method_name, char *arg_format, ...); I'm having trouble …