summaryrefslogtreecommitdiffstats
path: root/Makefile.pre.in
diff options
context:
space:
mode:
authorAmaury Forgeot d'Arc <amauryfa@gmail.com>2008-04-08 22:07:05 (GMT)
committerAmaury Forgeot d'Arc <amauryfa@gmail.com>2008-04-08 22:07:05 (GMT)
commit7adc776ea6ab808a4bf8fbf2740bb3bb9a7928a4 (patch)
treec9ba8bbc4fd541cd5761c5de0e92d782b3e3ddf0 /Makefile.pre.in
parent24f3c5c646d26350e4de6a878fed3e6db1e4ff9a (diff)
downloadcpython-7adc776ea6ab808a4bf8fbf2740bb3bb9a7928a4.zip
cpython-7adc776ea6ab808a4bf8fbf2740bb3bb9a7928a4.tar.gz
cpython-7adc776ea6ab808a4bf8fbf2740bb3bb9a7928a4.tar.bz2
Issue 2408: remove the _types module
It was only used as a helper in types.py to access types (GetSetDescriptorType and MemberDescriptorType), when they can easily be obtained with python code. These expressions even work with Jython. I don't know what the future of the types module is; (cf. discussion in http://bugs.python.org/issue1605 ) at least this change makes it simpler.
Diffstat (limited to 'Makefile.pre.in')
-rw-r--r--Makefile.pre.in2
1 files changed, 0 insertions, 2 deletions
diff --git a/Makefile.pre.in b/Makefile.pre.in
index acf060f..af16d89 100644
--- a/Makefile.pre.in
+++ b/Makefile.pre.in
@@ -333,7 +333,6 @@ OBJECT_OBJS= \
##########################################################################
# objects that get linked into the Python library
LIBRARY_OBJS= \
- Modules/_typesmodule.o \
Modules/getbuildinfo.o \
$(PARSER_OBJS) \
$(OBJECT_OBJS) \
@@ -371,7 +370,6 @@ sharedmods: $(BUILDPYTHON)
$(LIBRARY): $(LIBRARY_OBJS)
-rm -f $@
$(AR) cr $@ Modules/getbuildinfo.o
- $(AR) cr $@ Modules/_typesmodule.o
$(AR) cr $@ $(PARSER_OBJS)
$(AR) cr $@ $(OBJECT_OBJS)
$(AR) cr $@ $(PYTHON_OBJS)