[Python-checkins] CVS: python/dist/src/Lib/test test_descrtut.py,1.8,1.9

Guido van Rossum gvanrossum@users.sourceforge.net
Tue, 09 Oct 2001 12:39:48 -0700


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

Modified Files:
	test_descrtut.py 
Log Message:
Halfway checkin.  This is still messy, but it's beginning to address
the problem that slots weren't inherited properly.  override_slots()
no longer exists; in its place comes fixup_slot_dispatchers() which
does more and different work and is table-based.  (Eventually I want
this table also to replace all the little tab_foo tables.)

Also add a wrapper for __delslice__; this required a change in
test_descrtut.py.



Index: test_descrtut.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/test/test_descrtut.py,v
retrieving revision 1.8
retrieving revision 1.9
diff -C2 -d -r1.8 -r1.9
*** test_descrtut.py	2001/09/25 16:25:58	1.8
--- test_descrtut.py	2001/10/09 19:39:46	1.9
***************
*** 191,194 ****
--- 191,195 ----
       '__delattr__',
       '__delitem__',
+      '__delslice__',
       '__eq__',
       '__ge__',