mirror of
https://github.com/python/cpython.git
synced 2025-07-19 09:15:34 +00:00
build _csv extension module
This commit is contained in:
parent
f823f11c36
commit
ba9e978180
1 changed files with 3 additions and 0 deletions
3
setup.py
3
setup.py
|
@ -429,6 +429,9 @@ class PyBuildExt(build_ext):
|
||||||
libs = []
|
libs = []
|
||||||
exts.append( Extension('crypt', ['cryptmodule.c'], libraries=libs) )
|
exts.append( Extension('crypt', ['cryptmodule.c'], libraries=libs) )
|
||||||
|
|
||||||
|
# CSV files
|
||||||
|
exts.append( Extension('_csv', ['_csv.c']) )
|
||||||
|
|
||||||
# socket(2)
|
# socket(2)
|
||||||
exts.append( Extension('_socket', ['socketmodule.c'],
|
exts.append( Extension('_socket', ['socketmodule.c'],
|
||||||
depends = ['socketmodule.h']) )
|
depends = ['socketmodule.h']) )
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue