[Python-checkins] python/dist/src/Lib/test test_descr.py,1.113.4.20,1.113.4.21

tim_one@users.sourceforge.net tim_one@users.sourceforge.net
Thu, 11 Jul 2002 00:11:16 -0700


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

Modified Files:
      Tag: release22-maint
	test_descr.py 
Log Message:
Repaired optimistic comment in new test.


Index: test_descr.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/test/test_descr.py,v
retrieving revision 1.113.4.20
retrieving revision 1.113.4.21
diff -C2 -d -r1.113.4.20 -r1.113.4.21
*** test_descr.py	11 Jul 2002 07:06:42 -0000	1.113.4.20
--- test_descr.py	11 Jul 2002 07:11:13 -0000	1.113.4.21
***************
*** 2995,3001 ****
      c = C()
      c.attr = 42
!     # The only interesting thing here is whether this blows up in a
!     # debug build, due to flawed GC tracking logic in typeobject.c's
!     # call_finalizer() (a 2.2.1 bug).
      del c
      del C.container[-1]  # resurrect it again for the heck of it
--- 2995,3000 ----
      c = C()
      c.attr = 42
!     # The only interesting thing here is whether this blows up, due to flawed
!     #  GC tracking logic in typeobject.c's call_finalizer() (a 2.2.1 bug).
      del c
      del C.container[-1]  # resurrect it again for the heck of it