[Python-checkins] python/nondist/sandbox/csv/test test_csv.py,1.14,1.15

montanaro@users.sourceforge.net montanaro@users.sourceforge.net
Tue, 04 Feb 2003 14:10:57 -0800


Update of /cvsroot/python/python/nondist/sandbox/csv/test
In directory sc8-pr-cvs1:/tmp/cvs-serv11868

Modified Files:
	test_csv.py 
Log Message:
myexceltsv needs to subclass csv.excel, not csv.Dialect.  doh!


Index: test_csv.py
===================================================================
RCS file: /cvsroot/python/python/nondist/sandbox/csv/test/test_csv.py,v
retrieving revision 1.14
retrieving revision 1.15
diff -C2 -d -r1.14 -r1.15
*** test_csv.py	3 Feb 2003 20:26:26 -0000	1.14
--- test_csv.py	4 Feb 2003 22:10:54 -0000	1.15
***************
*** 216,220 ****
  
      def test_dialect_class(self):
!         class myexceltsv(csv.Dialect):
              delimiter = "\t"
          fileobj = StringIO()
--- 216,220 ----
  
      def test_dialect_class(self):
!         class myexceltsv(csv.excel):
              delimiter = "\t"
          fileobj = StringIO()