summaryrefslogtreecommitdiff
path: root/Lib/dummy_thread.py
diff options
context:
space:
mode:
authorBrett Cannon <bcannon@gmail.com>2007-01-25 23:30:39 +0000
committerBrett Cannon <bcannon@gmail.com>2007-01-25 23:30:39 +0000
commit8e4ce2e9390bc2fd834238d8060e0f611704a297 (patch)
tree0891a6fc393099b9b1f81c912340aa265f0cc049 /Lib/dummy_thread.py
parent38f7db8dc9001cb05e8d040d36cd33ae676120b7 (diff)
downloadcpython-8e4ce2e9390bc2fd834238d8060e0f611704a297.tar.gz
Remove specific mention of my name and email address from modules. Not really
needed and all bug reports should go to the bug tracker, not directly to me. Plus I am not the only person to have edited these files at this point.
Diffstat (limited to 'Lib/dummy_thread.py')
-rw-r--r--Lib/dummy_thread.py7
1 files changed, 2 insertions, 5 deletions
diff --git a/Lib/dummy_thread.py b/Lib/dummy_thread.py
index a72c92722f..c1313846e4 100644
--- a/Lib/dummy_thread.py
+++ b/Lib/dummy_thread.py
@@ -11,11 +11,8 @@ Suggested usage is::
import dummy_thread as thread
"""
-__author__ = "Brett Cannon"
-__email__ = "brett@python.org"
-
-# Exports only things specified by thread documentation
-# (skipping obsolete synonyms allocate(), start_new(), exit_thread())
+# Exports only things specified by thread documentation;
+# skipping obsolete synonyms allocate(), start_new(), exit_thread().
__all__ = ['error', 'start_new_thread', 'exit', 'get_ident', 'allocate_lock',
'interrupt_main', 'LockType']