File tree 2 files changed +1
-3
lines changed 2 files changed +1
-3
lines changed Original file line number Diff line number Diff line change @@ -97,6 +97,7 @@ PYTHONPATH=$(COREPYTHONPATH)
97
97
# setup.py script in the root of the Python source tree.
98
98
99
99
posix posixmodule.c # posix (UNIX) system calls
100
+ errno errnomodule.c # posix (UNIX) errno values
100
101
_sre _sre.c # Fredrik Lundh's new regular expressions
101
102
102
103
# The rest of the modules listed in this file are all commented out by
@@ -162,7 +163,6 @@ GLHACK=-Dclear=__GLclear
162
163
# fcntl fcntlmodule.c # fcntl(2) and ioctl(2)
163
164
# pwd pwdmodule.c # pwd(3)
164
165
# grp grpmodule.c # grp(3)
165
- # errno errnomodule.c # posix (UNIX) errno values
166
166
# select selectmodule.c # select(2); not on ancient System V
167
167
168
168
# Memory-mapped files (also works on Win32).
Original file line number Diff line number Diff line change @@ -215,8 +215,6 @@ def detect_modules(self):
215
215
exts .append ( Extension ('pwd' , ['pwdmodule.c' ]) )
216
216
# grp(3)
217
217
exts .append ( Extension ('grp' , ['grpmodule.c' ]) )
218
- # posix (UNIX) errno values
219
- exts .append ( Extension ('errno' , ['errnomodule.c' ]) )
220
218
# select(2); not on ancient System V
221
219
exts .append ( Extension ('select' , ['selectmodule.c' ]) )
222
220
You can’t perform that action at this time.
0 commit comments