Using mouse

2008-01-01 Thread Lucas Prado Melo
I would like to control mouse events (i.e. I would like to "click" and move mouse around by code). How do I do this in python? regards -- http://mail.python.org/mailman/listinfo/python-list

"prove"

2008-05-08 Thread Lucas Prado Melo
Hello, How could I "prove" to someone that python accepts this syntax using the documentation (I couldn't find it anywhere): classname.functionname(objectname) -- http://mail.python.org/mailman/listinfo/python-list

Re: "prove"

2008-05-08 Thread Lucas Prado Melo
Thanks Marco, this is just what I was looking for. On Thu, May 8, 2008 at 11:02 AM, David <[EMAIL PROTECTED]> wrote: > > classname.functionname(objectname) > > Do you mean something like this? > > class myclass: > @staticmethod > def myfunction(myobject): pass > > myobject = None > my

Re: "prove"

2008-05-09 Thread Lucas Prado Melo
On Fri, May 9, 2008 at 5:32 AM, Bruno Desthuilliers <[EMAIL PROTECTED]> wrote: > Why do you need the documentation ? Just fire up your python shell and hack > a Q&D example: I agree. I said it to this person, but he insisted I should use documentation... -- http://mail.python.org/mailman/listinfo/p

Re: "prove"

2008-05-09 Thread Lucas Prado Melo
Thanks for all the answers. I bet I will convince this guy! -- http://mail.python.org/mailman/listinfo/python-list

For...in statement and generators

2009-12-21 Thread Lucas Prado Melo
Is there a way to send() information back to a generator while using the for...in statement? Thanks in advance. -- http://mail.python.org/mailman/listinfo/python-list

Re: File Handling Problem

2009-09-04 Thread Lucas Prado Melo
On Fri, Sep 4, 2009 at 9:50 AM, joy99 wrote: > Dear Group, > > I have a file. The file has multiple lines. I want to get the line > number of any one of the strings. > Once I get that I like to increment the line number and see the string > of the immediate next line or any following line as outp