diff options
author | Brett Cannon <bcannon@gmail.com> | 2007-01-25 23:30:39 +0000 |
---|---|---|
committer | Brett Cannon <bcannon@gmail.com> | 2007-01-25 23:30:39 +0000 |
commit | 9875ba4d4e96e28c1b1a400d4f67dfc658ab189a (patch) | |
tree | a450dd6a3ab21ab5e062d9b21af47e3c4104a7f0 /Lib/dummy_thread.py | |
parent | 07e1db317db4605acd5295f02dcfa4943d4a7054 (diff) | |
download | cpython-git-9875ba4d4e96e28c1b1a400d4f67dfc658ab189a.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.py | 7 |
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'] |