add old names back into __all__
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 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']