Newbie Threading Question

S

Sparky

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
 
S

Sparky

-----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 Python versions with
threading) will support Python threading. Again, I don't know a lot
about this, but it would make sense.



-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.9 (MingW32)
Comment: Using GnuPG with Mozilla -http://enigmail.mozdev.org

iEYEARECAAYFAkh6V8YACgkQLMI5fndAv9hVKgCePbrN4nwbsdZXNfIcnm3cXac5
5kUAnR0OeNB0gjsksRD2W5gcZ8c0pby0
=p3U+
-----END PGP SIGNATURE-----

Thanks. I think that should make sense. Plus, if it is part of the
standard distribution, I would assume it is supported in most places.

Sam
 
L

Lev Elbert

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):
==================================================
7.4 thread -- Multiple threads of control

This module provides low-level primitives for working with multiple
threads (a.k.a. light-weight processes or tasks) -- multiple threads
of control sharing their global data space. For synchronization,
simple locks (a.k.a. mutexes or binary semaphores) are provided.

The module is optional. It is supported on Windows, Linux, SGI IRIX,
Solaris 2.x, as well as on systems that have a POSIX thread (a.k.a.
``pthread'') implementation. For systems lacking the thread module,
the dummy_thread module is available. It duplicates this module's
interface and can be used as a drop-in replacement.
==================================================
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
474,432
Messages
2,571,680
Members
48,796
Latest member
Greg L.

Latest Threads

Top