There was an error while loading. Please reload this page.
1 parent a11e4c1 commit a16b21fCopy full SHA for a16b21f
1 file changed
Modules/_csv.c
@@ -1,9 +1,21 @@
1
-/* TODO:
+/* 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
13
*/
14
15
#include "Python.h"
16
#include "structmember.h"
17
18
19
/* begin 2.2 compatibility macros */
20
#ifndef PyDoc_STRVAR
21
/* Define macros for inline documentation. */
0 commit comments