mirror of
https://github.com/python/cpython.git
synced 2025-07-19 09:15:34 +00:00
Patch #579435: Shadow Password Support Module
This commit is contained in:
parent
4d394dfebb
commit
c300175547
11 changed files with 466 additions and 429 deletions
2
setup.py
2
setup.py
|
@ -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']) )
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue