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.
This commit is contained in:
Brett Cannon 2007-01-25 23:30:39 +00:00
parent 07e1db317d
commit 9875ba4d4e
3 changed files with 2 additions and 13 deletions

View file

@ -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']