On Jan 12, 6:51 pm, Tim Chase wrote:
> > My code has a lot of while loops of the following format:
> > while True:
> > ...
> > if : break
>
> > The danger with such a code is that it might go to an infinite loop
> > - if the never occurs.
> > Is there a way - a python trick
Hi,
My code has a lot of while loops of the following format:
while True:
...
if : break
The danger with such a code is that it might go to an infinite loop
- if the never occurs.
Is there a way - a python trick - to have a check such that if the
loop goes for more than x nu
On Dec 22, 3:26 am, "James Mills"
wrote:
> On Mon, Dec 22, 2008 at 4:27 AM, Kottiyath wrote:
> > Hi all,
> > Is it a good idea to use Twisted inside my application, even though
> > it has no networking part in it?
> > Basically, my application needs lots of parallel processing - but I
> > am
Say, I have two threads, updating the same dictionary object - but for
different parameters:
Please find an example below:
a = {file1Data : '',
file2Data : ''}
Now, I send it to two different threads, both of which are looping
infinitely:
In thread1:
a['file1Data'] = open(filename1).read
On Dec 1, 7:43 pm, Tim Golden <[EMAIL PROTECTED]> wrote:
> RajNewbie wrote:
> > Hi all,
> > I am trying to connect to localhost via httplib, but it fails.
> > To check whether it is a firewall problem etc, I tried to connect
> > via urllib2, but it went
Hi all,
I am trying to connect to localhost via httplib, but it fails.
To check whether it is a firewall problem etc, I tried to connect
via urllib2, but it went through fine.
Could some one help me out on this? I cannot use urllib2 in the
program because I have to send files via post t