LionHeart123 / pyscripter

Automatically exported from code.google.com/p/pyscripter
0 stars 0 forks source link

Can we have list of parameter names for function/method in call tip instead of "*args, *kwargs" #665

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
I, sometime forget the parameters that should be passed to a function or method 
especially when I try to learn a new module such as wxPython. It will be great 
to see the name such as "String title, int width, int height" instead of 
"*args, **kwargs".

Sorry if this has been asked before and for my poor English.

Original issue reported on code.google.com by crypt...@gmail.com on 13 Jun 2012 at 9:12

GoogleCodeExporter commented 9 years ago
Pyscripter supports the so called "call tips". When you type the function 
paramerers a hint box pops up with the arguments of the function and the doc 
string.  This hint box shows automatically when you press the starting 
parenthesis of the function arguments.  You can also invoke it manually by 
pressing Shift-Ctrl+Space.

i.e. type 

>> open(

and you see what I mean.

For some packages you get better results in the editor by adding the package to 
the list of special packages (Tools, Options, IDE options, Special packages).

Original comment by pyscripter on 14 Jun 2012 at 3:03

GoogleCodeExporter commented 9 years ago
Oh I see. I should find it if I had read the manual first before asking this 
stupid question. Thank you very much!

Original comment by crypt...@gmail.com on 14 Jun 2012 at 9:46