[Python-checkins] r84754 - python/branches/py3k/Doc/library/imp.rst

benjamin.peterson python-checkins at python.org
Mon Sep 13 03:25:38 CEST 2010


Author: benjamin.peterson
Date: Mon Sep 13 03:25:38 2010
New Revision: 84754

Log:
remove duplicate statement

Modified:
   python/branches/py3k/Doc/library/imp.rst

Modified: python/branches/py3k/Doc/library/imp.rst
==============================================================================
--- python/branches/py3k/Doc/library/imp.rst	(original)
+++ python/branches/py3k/Doc/library/imp.rst	Mon Sep 13 03:25:38 2010
@@ -113,8 +113,7 @@
 .. function:: acquire_lock()
 
    Acquire the interpreter's import lock for the current thread.  This lock should
-   be used by import hooks to ensure thread-safety when importing modules. On
-   platforms without threads, this function does nothing.
+   be used by import hooks to ensure thread-safety when importing modules.
 
    Once a thread has acquired the import lock, the same thread may acquire it
    again without blocking; the thread must release it once for each time it has


More information about the Python-checkins mailing list