Re: Books about Python.

2008-08-24 Thread Peter Anderson
Hi! I am currently working my way through "Python Programming: An introduction to computer science" by John Zelle. Published by Franklin, Beedle & Associates. ISBN: 1-887902-99-6. Book's home page: http://www.fbeedle.com/99-6.html I have a small but quite good Python library and this is the

Re: property() usage - is this as good as it gets?

2008-08-24 Thread alex23
On Aug 25, 3:03 pm, "Gabriel Genellina" <[EMAIL PROTECTED]> wrote: > May I ask both of you to continue this in private? Certainly. But be warned, I -will- continue posting publicly if I believe someone is misinforming others here, whether it's willful or not. -- http://mail.python.org/mailman/list

Re: property() usage - is this as good as it gets?

2008-08-24 Thread castironpi
On Aug 24, 10:41 pm, alex23 <[EMAIL PROTECTED]> wrote: > On Aug 25, 12:42 pm, castironpi <[EMAIL PROTECTED]> wrote: > > > I'm baffled.  I don't understand what you write.   > > Which is pretty much how I feel about -all- of your posts. Alright. You're articulate. I'm getting a better picture of

Re: Interrupt python thread

2008-08-24 Thread Fredrik Lundh
James Matthews wrote: def __stop(self): self.__block.acquire() self.__stopped = True self.__block.notifyAll() self.__block.release() have you tried using that method? what happened? looking at the code, what do you think it does? -- http://mail.python

Re: How to check in CGI if client disconnected

2008-08-24 Thread Vishal
Hi, Thanks for the replies. In my case, the cgi is sending a large file to the client. In case the the stop button is pressed on the browser to cancel the download, i want to do some cleanup action. It's all one- way transfer in this case, so i can't expect the client to send anything to me. I r

Re: How to check in CGI if client disconnected

2008-08-24 Thread Graham Dumpleton
On Aug 25, 4:26 pm, Vishal <[EMAIL PROTECTED]> wrote: > Hi, > >   Thanks for the replies. In my case, the cgi is sending a large file > to the client. In case the the stop button is pressed on the browser > to cancel the download, i want to do some cleanup action. It's all one- > way transfer in th

<    1   2