File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -147,6 +147,7 @@ GLHACK=-Dclear=__GLclear
147147# struct structmodule.c # binary structure packing/unpacking
148148# time timemodule.c # -lm # time operations and variables
149149# operator operator.c # operator.add() and similar goodies
150+ # _weakref _weakref.c # basic weak reference support
150151# _codecs _codecsmodule.c # access to the builtin codecs and codec registry
151152
152153# unicodedata unicodedata.c unicodedatabase.c
Original file line number Diff line number Diff line change @@ -153,6 +153,7 @@ def detect_modules(self):
153153 exts .append ( Extension ('regex' , ['regexmodule.c' , 'regexpr.c' ]) )
154154 exts .append ( Extension ('pcre' , ['pcremodule.c' , 'pypcre.c' ]) )
155155
156+ exts .append ( Extension ('_weakref' , ['_weakref.c' ]) )
156157 exts .append ( Extension ('xreadlines' , ['xreadlinesmodule.c' ]) )
157158
158159 # array objects
You can’t perform that action at this time.
0 commit comments