Re: pydoc with METH_VARGS

2007-06-25 Thread Farshid Lashkari
Stuart wrote: I'm asking if there's some sort of commenting or input file or something to customize the output pydoc generates. Thanks. AFAIK, there is no way to do this. However, you can edit the doc string for your function, which can include the argument list. I believe this is what most

Re: pydoc with METH_VARGS

2007-06-24 Thread Stuart
I'm asking if there's some sort of commenting or input file or something to customize the output pydoc generates. Thanks. On Jun 23, 11:00 pm, 7stud [EMAIL PROTECTED] wrote: On Jun 23, 2:13 pm, Stuart [EMAIL PROTECTED] wrote: With my Python extension module all the function definitions are

pydoc with METH_VARGS

2007-06-23 Thread Stuart
With my Python extension module all the function definitions are with METH_VARGS. The result being that pydoc, just puts (...) for the argument list. Can I hand edit this to put the specific variable names I want? With optional arguments in brackets or something? Thanks. --

Re: pydoc with METH_VARGS

2007-06-23 Thread 7stud
On Jun 23, 2:13 pm, Stuart [EMAIL PROTECTED] wrote: With my Python extension module all the function definitions are with METH_VARGS. The result being that pydoc, just puts (...) for the argument list. Can I hand edit this to put the specific variable names I want? With optional arguments in