[Python-checkins] CVS: python/dist/src/Lib weakref.py,1.2,1.3

Fred L. Drake fdrake@users.sourceforge.net
Fri, 02 Feb 2001 11:28:37 -0800


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

Modified Files:
	weakref.py 
Log Message:

Ouch!  I need a better test suite for this.  ;-(


Index: weakref.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/weakref.py,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -r1.2 -r1.3
*** weakref.py	2001/02/02 15:13:24	1.2
--- weakref.py	2001/02/02 19:28:35	1.3
***************
*** 70,74 ****
          L = []
          for key, ref in self.data.items():
-             key, ref = L[i]
              o = ref()
              if o is not None:
--- 70,73 ----