From 9875ba4d4e96e28c1b1a400d4f67dfc658ab189a Mon Sep 17 00:00:00 2001 From: Brett Cannon Date: Thu, 25 Jan 2007 23:30:39 +0000 Subject: [PATCH] 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. --- Lib/_strptime.py | 3 --- Lib/dummy_thread.py | 7 ++----- Lib/dummy_threading.py | 5 ----- 3 files changed, 2 insertions(+), 13 deletions(-) diff --git a/Lib/_strptime.py b/Lib/_strptime.py index 0d7dec4dfb..baafe9aab5 100644 --- a/Lib/_strptime.py +++ b/Lib/_strptime.py @@ -22,9 +22,6 @@ try: except: from dummy_thread import allocate_lock as _thread_allocate_lock -__author__ = "Brett Cannon" -__email__ = "brett@python.org" - __all__ = ['strptime'] def _getlang(): 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'] diff --git a/Lib/dummy_threading.py b/Lib/dummy_threading.py index 48f7c4c746..81028a3d4e 100644 --- a/Lib/dummy_threading.py +++ b/Lib/dummy_threading.py @@ -5,11 +5,6 @@ to not have ``threading`` considered imported. Had ``threading`` been directly imported it would have made all subsequent imports succeed regardless of whether ``thread`` was available which is not desired. -:Author: Brett Cannon -:Contact: brett@python.org - -XXX: Try to get rid of ``_dummy_threading``. - """ from sys import modules as sys_modules -- 2.50.1