[Python-checkins] python/dist/src/Lib threading.py,1.25,1.26

jhylton@users.sourceforge.net jhylton@users.sourceforge.net
Wed, 14 Aug 2002 10:46:42 -0700


Update of /cvsroot/python/python/dist/src/Lib
In directory usw-pr-cvs1:/tmp/cvs-serv28173

Modified Files:
	threading.py 
Log Message:
Explain a little more.


Index: threading.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/threading.py,v
retrieving revision 1.25
retrieving revision 1.26
diff -C2 -d -r1.25 -r1.26
*** threading.py	14 Aug 2002 17:43:59 -0000	1.25
--- threading.py	14 Aug 2002 17:46:40 -0000	1.26
***************
*** 173,176 ****
--- 173,177 ----
  
      def _is_owned(self):
+         # Return True if lock is owned by currentThread.
          # This method is called only if __lock doesn't have _is_owned().
          if self.__lock.acquire(0):