[Python-checkins] CVS: python/dist/src/Lib/test test_descr.py,1.100,1.101

Tim Peters tim_one@users.sourceforge.net
Mon, 29 Oct 2001 21:45:28 -0800


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

Modified Files:
	test_descr.py 
Log Message:
To cover a recent checkin, added a test to ensure dir(None) == dir(Ellipsis).


Index: test_descr.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/test/test_descr.py,v
retrieving revision 1.100
retrieving revision 1.101
diff -C2 -d -r1.100 -r1.101
*** test_descr.py	2001/10/30 05:41:07	1.100
--- test_descr.py	2001/10/30 05:45:26	1.101
***************
*** 356,359 ****
--- 356,363 ----
          pass
  
+     # Two essentially featureless objects, just inheriting stuff from
+     # object.
+     vereq(dir(None), dir(Ellipsis))
+ 
  binops = {
      'add': '+',