Commit 09695703 authored by Skip Montanaro's avatar Skip Montanaro

build _csv extension module

parent da3eb383
......@@ -429,6 +429,9 @@ class PyBuildExt(build_ext):
libs = []
exts.append( Extension('crypt', ['cryptmodule.c'], libraries=libs) )
# CSV files
exts.append( Extension('_csv', ['_csv.c']) )
# socket(2)
exts.append( Extension('_socket', ['socketmodule.c'],
depends = ['socketmodule.h']) )
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment