[Python-checkins] python/dist/src/Modules _csv.c,1.3,1.4

montanaro@users.sourceforge.net montanaro@users.sourceforge.net
Fri, 11 Apr 2003 12:33:58 -0700


Update of /cvsroot/python/python/dist/src/Modules
In directory sc8-pr-cvs1:/tmp/cvs-serv19130

Modified Files:
	_csv.c 
Log Message:
zap commented out bit of code


Index: _csv.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Modules/_csv.c,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** _csv.c	23 Mar 2003 14:32:54 -0000	1.3
--- _csv.c	11 Apr 2003 19:33:55 -0000	1.4
***************
*** 8,12 ****
  
  **** For people modifying this code, please note that as of this writing
! **** (2003-03-23), it is intended that this code should work with Python
  **** 2.2.
  
--- 8,12 ----
  
  **** For people modifying this code, please note that as of this writing
! **** (2003-03-23), it is intended t hat this code should work with Python
  **** 2.2.
  
***************
*** 271,275 ****
  {
          Py_XDECREF(self->lineterminator);
- 	/*PyMem_DEL(self);*/
          self->ob_type->tp_free((PyObject *)self);
  }
--- 271,274 ----