Skip to content

Commit 691d0c4

Browse files
author
brett.cannon
committedJan 25, 2007
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. git-svn-id: http://svn.python.org/projects/python/trunk@53570 6015fed2-1504-0410-9fe1-9d1591cc4771
1 parent 803403a commit 691d0c4

File tree

3 files changed

+2
-13
lines changed

3 files changed

+2
-13
lines changed
 

‎Lib/_strptime.py

-3
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,6 @@
2222
except:
2323
from dummy_thread import allocate_lock as _thread_allocate_lock
2424

25-
__author__ = "Brett Cannon"
26-
__email__ = "brett@python.org"
27-
2825
__all__ = ['strptime']
2926

3027
def _getlang():

‎Lib/dummy_thread.py

+2-5
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,8 @@
1111
import dummy_thread as thread
1212
1313
"""
14-
__author__ = "Brett Cannon"
15-
__email__ = "brett@python.org"
16-
17-
# Exports only things specified by thread documentation
18-
# (skipping obsolete synonyms allocate(), start_new(), exit_thread())
14+
# Exports only things specified by thread documentation;
15+
# skipping obsolete synonyms allocate(), start_new(), exit_thread().
1916
__all__ = ['error', 'start_new_thread', 'exit', 'get_ident', 'allocate_lock',
2017
'interrupt_main', 'LockType']
2118

‎Lib/dummy_threading.py

-5
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,6 @@
55
directly imported it would have made all subsequent imports succeed
66
regardless of whether ``thread`` was available which is not desired.
77
8-
:Author: Brett Cannon
9-
:Contact: brett@python.org
10-
11-
XXX: Try to get rid of ``_dummy_threading``.
12-
138
"""
149
from sys import modules as sys_modules
1510

0 commit comments

Comments
 (0)
Please sign in to comment.