]> granicus.if.org Git - python/commitdiff
Remove specific mention of my name and email address from modules. Not really
authorBrett Cannon <bcannon@gmail.com>
Thu, 25 Jan 2007 23:30:39 +0000 (23:30 +0000)
committerBrett Cannon <bcannon@gmail.com>
Thu, 25 Jan 2007 23:30:39 +0000 (23:30 +0000)
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
Lib/dummy_thread.py
Lib/dummy_threading.py

index 0d7dec4dfb25848e0812e7d0d1a0d38de90e2d09..baafe9aab5d9c9ade69e63d480aba54d3c2af95e 100644 (file)
@@ -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():
index a72c92722f4fd2527d16c1eb484059993e6d31f9..c1313846e48ca08ed5665c49de9ee77cd88a2f0d 100644 (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']
 
index 48f7c4c74699e52798b1a500741d11ab3179ef1d..81028a3d4e8a05aaa6ad3b85757b013e0c829c4d 100644 (file)
@@ -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