summaryrefslogtreecommitdiffstats
path: root/Modules/_csv.c
diff options
context:
space:
mode:
authorSkip Montanaro <skip@pobox.com>2003-03-23 14:32:54 (GMT)
committerSkip Montanaro <skip@pobox.com>2003-03-23 14:32:54 (GMT)
commita16b21fb0ab25e4cbe54fe0a39da5e448f3d44cb (patch)
tree89e889ce6982e89bd6c4fe4aaff9c6c49a071496 /Modules/_csv.c
parenta11e4c13b1774a9fe463518b2a2a4e24f4da84d0 (diff)
downloadcpython-a16b21fb0ab25e4cbe54fe0a39da5e448f3d44cb.zip
cpython-a16b21fb0ab25e4cbe54fe0a39da5e448f3d44cb.tar.gz
cpython-a16b21fb0ab25e4cbe54fe0a39da5e448f3d44cb.tar.bz2
add comment about 2.2 compatibility
dump empty TODO comment
Diffstat (limited to 'Modules/_csv.c')
-rw-r--r--Modules/_csv.c14
1 files changed, 13 insertions, 1 deletions
diff --git a/Modules/_csv.c b/Modules/_csv.c
index 7a3bfc4..e62999f 100644
--- a/Modules/_csv.c
+++ b/Modules/_csv.c
@@ -1,9 +1,21 @@
-/* TODO:
+/* csv module */
+
+/*
+
+This module provides the low-level underpinnings of a CSV reading/writing
+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
+**** 2.2.
+
*/
#include "Python.h"
#include "structmember.h"
+
/* begin 2.2 compatibility macros */
#ifndef PyDoc_STRVAR
/* Define macros for inline documentation. */