diff options
author | Benjamin Peterson <benjamin@python.org> | 2008-06-11 18:02:31 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2008-06-11 18:02:31 (GMT) |
commit | 13f7382e0d4087e5aaa511819e20b5b08405a819 (patch) | |
tree | 7096d1242529f163190d068e2842ee86562358c0 /Lib/threading.py | |
parent | fe22a456d5161960ad2c7b448bc406680378af2e (diff) | |
download | cpython-13f7382e0d4087e5aaa511819e20b5b08405a819.zip cpython-13f7382e0d4087e5aaa511819e20b5b08405a819.tar.gz cpython-13f7382e0d4087e5aaa511819e20b5b08405a819.tar.bz2 |
add old names back into __all__
Diffstat (limited to 'Lib/threading.py')
-rw-r--r-- | Lib/threading.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Lib/threading.py b/Lib/threading.py index b6f0375..bfca44c 100644 --- a/Lib/threading.py +++ b/Lib/threading.py @@ -16,7 +16,8 @@ from traceback import format_exc as _format_exc from collections import deque # Rename some stuff so "from threading import *" is safe -__all__ = ['active_count', 'Condition', 'current_thread', 'enumerate', 'Event', +__all__ = ['activeCount', 'active_count', 'Condition', 'currentThread', + 'current_thread', 'enumerate', 'Event', 'Lock', 'RLock', 'Semaphore', 'BoundedSemaphore', 'Thread', 'Timer', 'setprofile', 'settrace', 'local', 'stack_size'] |