symbian-qemu-0.9.1-12/python-2.6.1/Doc/library/dummy_threading.rst
changeset 1 2fb8b9db1c86
equal deleted inserted replaced
0:ffa851df0825 1:2fb8b9db1c86
       
     1 
       
     2 :mod:`dummy_threading` --- Drop-in replacement for the :mod:`threading` module
       
     3 ==============================================================================
       
     4 
       
     5 .. module:: dummy_threading
       
     6    :synopsis: Drop-in replacement for the threading module.
       
     7 
       
     8 
       
     9 This module provides a duplicate interface to the :mod:`threading` module.  It
       
    10 is meant to be imported when the :mod:`thread` module is not provided on a
       
    11 platform.
       
    12 
       
    13 Suggested usage is::
       
    14 
       
    15    try:
       
    16        import threading as _threading
       
    17    except ImportError:
       
    18        import dummy_threading as _threading
       
    19 
       
    20 Be careful to not use this module where deadlock might occur from a thread
       
    21 being created that blocks waiting for another thread to be created.  This  often
       
    22 occurs with blocking I/O.
       
    23