Re: How to reset document string

2009-08-14 Thread Anand K Rayudu
Dear Carl, Your ideas are extremely good, and I liked idea 2 especially, based on that I am considering following approach. Eg: let us say I have module named myModule and exposing myModule.myAPI So I will now rename myModule as _myModule and write a python layer with myModule So my python l

Re: How to reset document string

2009-08-07 Thread Carl Banks
On Aug 7, 2:54 am, Anand K Rayudu wrote: > Dear All, > > We have extended and embedded python into my our application. > We exposed few APIs to python using > >  Py_InitModule("myModuleName", myMethods); > where my methods are > > static PyMethodDef VistaDbMethods[] = { >    { (char *)"myAPI",_myA

Re: How to reset document string

2009-08-07 Thread Diez B. Roggisch
Anand K Rayudu schrieb: Dear All, We have extended and embedded python into my our application. We exposed few APIs to python using Py_InitModule("myModuleName", myMethods); where my methods are static PyMethodDef VistaDbMethods[] = { { (char *)"myAPI",_myAPICFunctionPtr ,METH_VARARGS,"usage

How to reset document string

2009-08-07 Thread Anand K Rayudu
Dear All, We have extended and embedded python into my our application. We exposed few APIs to python using Py_InitModule("myModuleName", myMethods); where my methods are static PyMethodDef VistaDbMethods[] = { { (char *)"myAPI",_myAPICFunctionPtr ,METH_VARARGS,"usage: MyHelp)" } Now proble