diff options
author | Martin v. Löwis <martin@v.loewis.de> | 2005-01-23 09:27:24 (GMT) |
---|---|---|
committer | Martin v. Löwis <martin@v.loewis.de> | 2005-01-23 09:27:24 (GMT) |
commit | c300175547ced0af17857a29462b0f9294e8c31c (patch) | |
tree | dd3704d47b76e1714599eefe77d4eec0354dd11b /setup.py | |
parent | 4d394dfebbcf00e7eec74ee5f4c1b149b3744a91 (diff) | |
download | cpython-c300175547ced0af17857a29462b0f9294e8c31c.zip cpython-c300175547ced0af17857a29462b0f9294e8c31c.tar.gz cpython-c300175547ced0af17857a29462b0f9294e8c31c.tar.bz2 |
Patch #579435: Shadow Password Support Module
Diffstat (limited to 'setup.py')
-rw-r--r-- | setup.py | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -388,6 +388,8 @@ class PyBuildExt(build_ext): exts.append( Extension('pwd', ['pwdmodule.c']) ) # grp(3) exts.append( Extension('grp', ['grpmodule.c']) ) + # spwd, shadow passwords + exts.append( Extension('spwd', ['spwdmodule.c']) ) # select(2); not on ancient System V exts.append( Extension('select', ['selectmodule.c']) ) |