Commit 4c4de721 authored by Fred Drake's avatar Fred Drake

Add entries for the weakref module to the build control.

parent 2f784cbc
...@@ -147,6 +147,7 @@ GLHACK=-Dclear=__GLclear ...@@ -147,6 +147,7 @@ GLHACK=-Dclear=__GLclear
#struct structmodule.c # binary structure packing/unpacking #struct structmodule.c # binary structure packing/unpacking
#time timemodule.c # -lm # time operations and variables #time timemodule.c # -lm # time operations and variables
#operator operator.c # operator.add() and similar goodies #operator operator.c # operator.add() and similar goodies
#_weakref _weakref.c # basic weak reference support
#_codecs _codecsmodule.c # access to the builtin codecs and codec registry #_codecs _codecsmodule.c # access to the builtin codecs and codec registry
#unicodedata unicodedata.c unicodedatabase.c #unicodedata unicodedata.c unicodedatabase.c
......
...@@ -153,6 +153,7 @@ class PyBuildExt(build_ext): ...@@ -153,6 +153,7 @@ class PyBuildExt(build_ext):
exts.append( Extension('regex', ['regexmodule.c', 'regexpr.c']) ) exts.append( Extension('regex', ['regexmodule.c', 'regexpr.c']) )
exts.append( Extension('pcre', ['pcremodule.c', 'pypcre.c']) ) exts.append( Extension('pcre', ['pcremodule.c', 'pypcre.c']) )
exts.append( Extension('_weakref', ['_weakref.c']) )
exts.append( Extension('xreadlines', ['xreadlinesmodule.c']) ) exts.append( Extension('xreadlines', ['xreadlinesmodule.c']) )
# array objects # array objects
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment