[Tutor] list of functions

2017-03-30 Thread kay Cee
Greetings all, I would like to use a list of functions for an automation project, and this is the prototype I came up with ### def func1(): print('func1') def func2(): print('func2') def func3(): print('func3') func_list = ('func1', 'func2', 'func3') for f in

Re: [Tutor] list dll functions ?

2010-09-15 Thread patrice laporte
Dependdencyy walker is a good tool, but as you have seen it doesn't give you function's signature. If you explore a MS dll, you should to have a look at MSDN and read about the function description. A bit out of subject : There is no way to find the function's signature only from exploring the

Re: [Tutor] list dll functions?

2010-09-15 Thread Alan Gauld
Alex Hall mehg...@gmail.com wrote Out of curiosity: I know I can call dll functions from python using the win32 lib, but is there any way to simply examine a loaded dll to see all of the functions and attributes it exposes for use? There are various tools around to do that and hopefully some

Re: [Tutor] list dll functions?

2010-09-15 Thread ALAN GAULD
the parameters etc. Alan Gauld Author of the Learn To Program website http://www.alan-g.me.uk/ - Original Message From: Alex Hall mehg...@gmail.com To: Alan Gauld alan.ga...@btinternet.com Sent: Wednesday, 15 September, 2010 15:57:43 Subject: Re: [Tutor] list dll functions? On 9/15

[Tutor] list dll functions?

2010-09-14 Thread Alex Hall
Hi all, Out of curiosity: I know I can call dll functions from python using the win32 lib, but is there any way to simply examine a loaded dll to see all of the functions and attributes it exposes for use? I would do no good with a hex editor since I have no idea what all the numbers mean, so I am

Re: [Tutor] list dll functions?

2010-09-14 Thread R. Alan Monroe
the win32 lib, but is there any way to simply examine a loaded dll to see all of the functions and attributes it exposes for use? I would http://www.dependencywalker.com/ ___ Tutor maillist - Tutor@python.org To unsubscribe or change subscription

Re: [Tutor] list dll functions?

2010-09-14 Thread Alex Hall
On 9/14/10, R. Alan Monroe amon...@columbus.rr.com wrote: the win32 lib, but is there any way to simply examine a loaded dll to see all of the functions and attributes it exposes for use? I would http://www.dependencywalker.com/ A great program, thanks! Best of all, for me anyway, it works