[Python-checkins] python/dist/src/Lib/test test_descr.py, 1.196, 1.196.8.1

mwh at users.sourceforge.net mwh at users.sourceforge.net
Thu Aug 7 09:09:27 EDT 2003


Update of /cvsroot/python/python/dist/src/Lib/test
In directory sc8-pr-cvs1:/tmp/cvs-serv29834/Lib/test

Modified Files:
      Tag: release23-maint
	test_descr.py 
Log Message:
As penance for forgetting to flag my last checkins as bugfix candidates,
just do the backport.

These changes do not apply to release22-maint.


Index: test_descr.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/test/test_descr.py,v
retrieving revision 1.196
retrieving revision 1.196.8.1
diff -C2 -d -r1.196 -r1.196.8.1
*** test_descr.py	29 Jun 2003 15:44:07 -0000	1.196
--- test_descr.py	7 Aug 2003 15:08:54 -0000	1.196.8.1
***************
*** 3587,3590 ****
--- 3587,3597 ----
  
      try:
+         D.__bases__ = (C, C)
+     except TypeError:
+         pass
+     else:
+         raise TestFailed, "didn't detect repeated base classes"
+ 
+     try:
          D.__bases__ = (E,)
      except TypeError:





More information about the Python-checkins mailing list