On Jul 13, 8:33 am, Sparky <[EMAIL PROTECTED]> wrote:
> It seems strange, but I can't find a list of operating systems which
> support / don't support threading in Python. Can anyone point me in
> the right direction?
>
> Thanks,
> Sam
Here is the list (from Python documentation of thread module):
On Jul 13, 1:30 pm, Nick Dumas <[EMAIL PROTECTED]> wrote:
> -BEGIN PGP SIGNED MESSAGE-
> Hash: SHA1
>
> I'm not an expert on Python threading, so don't take my word as low,
> however, I believe that there's no need for a list of systems which
> support it because the Python virtual machine
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1
I'm not an expert on Python threading, so don't take my word as low,
however, I believe that there's no need for a list of systems which
support it because the Python virtual machine handles it. Thus, any
system which supports Python (or at least Pytho
It seems strange, but I can't find a list of operating systems which
support / don't support threading in Python. Can anyone point me in
the right direction?
Thanks,
Sam
--
http://mail.python.org/mailman/listinfo/python-list
Thanks MyHaz,
Now its oke :) thanks for that example
--
http://mail.python.org/mailman/listinfo/python-list
Posting the error message could help. Also you might check out this
example
http://thraxil.org/thread.txt
- Haz
--
http://mail.python.org/mailman/listinfo/python-list
H!,
I have made a spider and now I want to use threading so it will be
faster faster and faster :)
But I don't understand threading.
So I try this but I get a error in windows 2000.
---
class connector(threading.Thread):
def __init__(self,url):
self.url = url
threading