diff options
author | Guido van Rossum <guido@python.org> | 1998-10-07 14:41:13 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1998-10-07 14:41:13 (GMT) |
commit | 06c18088d665cb25b9ce8d05da36432a5cbd6d27 (patch) | |
tree | d3088b6ec158ca38e8be621822e0990c45e1d476 /Objects | |
parent | 2e19bd7cc7520052b0c6e3d3da6baf45fb3b5e6b (diff) | |
download | cpython-06c18088d665cb25b9ce8d05da36432a5cbd6d27.zip cpython-06c18088d665cb25b9ce8d05da36432a5cbd6d27.tar.gz cpython-06c18088d665cb25b9ce8d05da36432a5cbd6d27.tar.bz2 |
Add Greg Stein's buffer object API.
Diffstat (limited to 'Objects')
-rw-r--r-- | Objects/Makefile.in | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/Objects/Makefile.in b/Objects/Makefile.in index e2dee62..3e7d2a2 100644 --- a/Objects/Makefile.in +++ b/Objects/Makefile.in @@ -28,7 +28,7 @@ SHELL= /bin/sh # === Fixed definitions === -OBJS= abstract.o \ +OBJS= abstract.o bufferobject.o \ classobject.o cobject.o complexobject.o \ fileobject.o floatobject.o \ frameobject.o funcobject.o intobject.o listobject.o \ @@ -37,7 +37,7 @@ OBJS= abstract.o \ sliceobject.o stringobject.o \ tupleobject.o typeobject.o -SRCS= abstract.c \ +SRCS= abstract.c bufferobject.c \ classobject.c cobject.c complexobject.c \ fileobject.c floatobject.c \ frameobject.c funcobject.c intobject.c listobject.c \ @@ -74,6 +74,7 @@ depend: .PRECIOUS: Makefile abstract.o: abstract.c +bufferobject.o: bufferobject.c classobject.o: classobject.c cobject.o: cobject.c complexobject.o: complexobject.c |