diff options
author | Skip Montanaro <skip@pobox.com> | 2003-03-23 14:32:54 +0000 |
---|---|---|
committer | Skip Montanaro <skip@pobox.com> | 2003-03-23 14:32:54 +0000 |
commit | a16b21fb0ab25e4cbe54fe0a39da5e448f3d44cb (patch) | |
tree | 89e889ce6982e89bd6c4fe4aaff9c6c49a071496 /Modules/_csv.c | |
parent | a11e4c13b1774a9fe463518b2a2a4e24f4da84d0 (diff) | |
download | cpython-git-a16b21fb0ab25e4cbe54fe0a39da5e448f3d44cb.tar.gz |
add comment about 2.2 compatibility
dump empty TODO comment
Diffstat (limited to 'Modules/_csv.c')
-rw-r--r-- | Modules/_csv.c | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/Modules/_csv.c b/Modules/_csv.c index 7a3bfc4502..e62999ffbf 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. */ |