From: Skip Montanaro Date: Sun, 23 Mar 2003 14:32:54 +0000 (+0000) Subject: add comment about 2.2 compatibility X-Git-Tag: v2.3c1~1377 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=a16b21fb0ab25e4cbe54fe0a39da5e448f3d44cb;p=thirdparty%2FPython%2Fcpython.git add comment about 2.2 compatibility dump empty TODO comment --- diff --git a/Modules/_csv.c b/Modules/_csv.c index 7a3bfc450248..e62999ffbfa8 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. */