mirror of
https://github.com/python/cpython.git
synced 2025-07-19 17:25:54 +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 = []
|
||||
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']) )
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue