Since the errno module is needed by os._execvpe(), and that is used by the

setup.py (indirectly) script to build the standard dynamically loaded
modules, the errno module is being made static so it will always be
available.
Closes SF bug #591205 (needed on trunk only).
This commit is contained in:
Fred Drake 2002-08-05 18:06:17 +00:00
parent 2805428d92
commit 5f8a23f32f
2 changed files with 1 additions and 3 deletions

View file

@ -315,8 +315,6 @@ class PyBuildExt(build_ext):
exts.append( Extension('pwd', ['pwdmodule.c']) )
# grp(3)
exts.append( Extension('grp', ['grpmodule.c']) )
# posix (UNIX) errno values
exts.append( Extension('errno', ['errnomodule.c']) )
# select(2); not on ancient System V
exts.append( Extension('select', ['selectmodule.c']) )