[Python-checkins] python/dist/src/Lib threading.py,1.29,1.30
gvanrossum@users.sourceforge.net
gvanrossum@users.sourceforge.net
2002年12月30日 13:59:57 -0800
- Previous message: [Python-checkins] python/dist/src/Modules datetimemodule.c,1.19,1.20
- Next message: [Python-checkins] python/dist/src/Mac/Lib Audio_mac.py,1.9,NONE EasyDialogs.py,1.40,NONE FrameWork.py,1.54,NONE MiniAEFrame.py,1.3,NONE PixMapWrapper.py,1.4,NONE WASTEconst.py,1.2,NONE aepack.py,1.5,NONE aetools.py,1.5,NONE aetypes.py,1.3,NONE applesingle.py,1.2,NONE appletrawmain.py,1.3,NONE appletrunner.py,1.1,NONE argvemulator.py,1.3,NONE bgenlocations.py,1.2,NONE buildtools.py,1.21,NONE bundlebuilder.py,1.14,NONE cfmfile.py,1.5,NONE dialogs.rsrc,1.2,NONE errors.rsrc,1.1,NONE findertools.py,1.8,NONE ic.py,1.6,NONE icopen.py,1.1,NONE macerrors.py,1.7,NONE macfs.py,1.4,NONE macostools.py,1.17,NONE macresource.py,1.9,NONE plistlib.py,1.5,NONE videoreader.py,1.2,NONE
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
Update of /cvsroot/python/python/dist/src/Lib
In directory sc8-pr-cvs1:/tmp/cvs-serv31157
Modified Files:
threading.py
Log Message:
Add __all__. (Brett Cannon.)
Index: threading.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/threading.py,v
retrieving revision 1.29
retrieving revision 1.30
diff -C2 -d -r1.29 -r1.30
*** threading.py 21 Nov 2002 21:08:39 -0000 1.29
--- threading.py 30 Dec 2002 21:59:55 -0000 1.30
***************
*** 8,11 ****
--- 8,13 ----
# Rename some stuff so "from threading import *" is safe
+ __all__ = ['activeCount', 'Condition', 'currentThread', 'enumerate', 'Event',
+ 'Lock', 'RLock', 'Semaphore', 'BoundedSemaphore', 'Thread', 'Timer']
_sys = sys
- Previous message: [Python-checkins] python/dist/src/Modules datetimemodule.c,1.19,1.20
- Next message: [Python-checkins] python/dist/src/Mac/Lib Audio_mac.py,1.9,NONE EasyDialogs.py,1.40,NONE FrameWork.py,1.54,NONE MiniAEFrame.py,1.3,NONE PixMapWrapper.py,1.4,NONE WASTEconst.py,1.2,NONE aepack.py,1.5,NONE aetools.py,1.5,NONE aetypes.py,1.3,NONE applesingle.py,1.2,NONE appletrawmain.py,1.3,NONE appletrunner.py,1.1,NONE argvemulator.py,1.3,NONE bgenlocations.py,1.2,NONE buildtools.py,1.21,NONE bundlebuilder.py,1.14,NONE cfmfile.py,1.5,NONE dialogs.rsrc,1.2,NONE errors.rsrc,1.1,NONE findertools.py,1.8,NONE ic.py,1.6,NONE icopen.py,1.1,NONE macerrors.py,1.7,NONE macfs.py,1.4,NONE macostools.py,1.17,NONE macresource.py,1.9,NONE plistlib.py,1.5,NONE videoreader.py,1.2,NONE
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]