ASPN ActiveState Programmer Network
  ActiveState
/ Home / Perl / PHP / Python / Tcl / XSLT /
/ Safari / My ASPN /
Cookbooks | Documentation | Mailing Lists | Modules | News Feeds | Products | User Groups | Web Services
SEARCH

Reference
ActivePython 2.5
Python Documentation
Library Reference
15. Optional Operating System Services
15.1 select -- Waiting for I/O completion
15.2 thread -- Multiple threads of control
15.3 threading -- Higher-level threading interface
15.4 dummy thread -- Drop-in replacement for the thread module
15.5 dummy threading -- Drop-in replacement for the threading module
15.6 mmap -- Memory-mapped file support
15.7 readline -- GNU readline interface
15.8 rlcompleter -- Completion function for GNU readline

MyASPN >> Reference >> ActivePython 2.5 >> Python Documentation >> Library Reference >> 15. Optional Operating System Services
ActivePython 2.5 documentation

15.5 dummy_threading -- Drop-in replacement for the threading module

This module provides a duplicate interface to the threading module. It is meant to be imported when the thread module is not provided on a platform.

Suggested usage is:

try:
    import threading as _threading
except ImportError:
    import dummy_threading as _threading

Be careful to not use this module where deadlock might occur from a thread being created that blocks waiting for another thread to be created. This often occurs with blocking I/O.

See About this document... for information on suggesting changes.

Privacy Policy | Email Opt-out | Feedback | Syndication
© ActiveState 2004 All rights reserved