[Python-checkins] CVS: python/dist/src/Lib threading.py,1.7,1.8

Jeremy Hylton python-dev@python.org
Wed, 31 May 2000 18:17:20 -0700


Update of /cvsroot/python/python/dist/src/Lib
In directory slayer.i.sourceforge.net:/tmp/cvs-serv21902

Modified Files:
	threading.py 
Log Message:
patch from Charles Waldman--
define ThreadError (== thread.error); docs should be updated, too


Index: threading.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/threading.py,v
retrieving revision 1.7
retrieving revision 1.8
diff -C2 -r1.7 -r1.8
*** threading.py	2000/02/29 00:10:24	1.7
--- threading.py	2000/06/01 01:17:17	1.8
***************
*** 19,22 ****
--- 19,23 ----
  _allocate_lock = thread.allocate_lock
  _get_ident = thread.get_ident
+ ThreadError = thread.error
  del thread