summaryrefslogtreecommitdiffstats
path: root/Modules/_csv.c
diff options
context:
space:
mode:
authorSkip Montanaro <skip@pobox.com>2003-04-11 19:33:55 (GMT)
committerSkip Montanaro <skip@pobox.com>2003-04-11 19:33:55 (GMT)
commit3bc093b717fc29ecf4540d4204447f8447d7377d (patch)
tree8e7559216388e6997e6c91e18b54afa31deaffa9 /Modules/_csv.c
parent06c7b62a8339cd8f9cffc6d1daee58221ee041c4 (diff)
downloadcpython-3bc093b717fc29ecf4540d4204447f8447d7377d.zip
cpython-3bc093b717fc29ecf4540d4204447f8447d7377d.tar.gz
cpython-3bc093b717fc29ecf4540d4204447f8447d7377d.tar.bz2
zap commented out bit of code
Diffstat (limited to 'Modules/_csv.c')
-rw-r--r--Modules/_csv.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/Modules/_csv.c b/Modules/_csv.c
index e62999f..ebabf12 100644
--- a/Modules/_csv.c
+++ b/Modules/_csv.c
@@ -7,7 +7,7 @@ module. Users should not use this module directly, but import the csv.py
module instead.
**** 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
+**** (2003-03-23), it is intended t hat this code should work with Python
**** 2.2.
*/
@@ -270,7 +270,6 @@ static void
Dialect_dealloc(DialectObj *self)
{
Py_XDECREF(self->lineterminator);
- /*PyMem_DEL(self);*/
self->ob_type->tp_free((PyObject *)self);
}