Skip to content

Commit a16b21f

Browse files
author
Skip Montanaro
committed
add comment about 2.2 compatibility
dump empty TODO comment
1 parent a11e4c1 commit a16b21f

1 file changed

Lines changed: 13 additions & 1 deletion

File tree

Modules/_csv.c

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,21 @@
1-
/* TODO:
1+
/* csv module */
2+
3+
/*
4+
5+
This module provides the low-level underpinnings of a CSV reading/writing
6+
module. Users should not use this module directly, but import the csv.py
7+
module instead.
8+
9+
**** For people modifying this code, please note that as of this writing
10+
**** (2003-03-23), it is intended that this code should work with Python
11+
**** 2.2.
12+
213
*/
314

415
#include "Python.h"
516
#include "structmember.h"
617

18+
719
/* begin 2.2 compatibility macros */
820
#ifndef PyDoc_STRVAR
921
/* Define macros for inline documentation. */

0 commit comments

Comments
 (0)