mirror of
https://github.com/python/cpython.git
synced 2025-08-04 17:08:35 +00:00
changes for keyword arguments and fast function call; added abstract.c
This commit is contained in:
parent
884afd654a
commit
2271bf7187
3 changed files with 81 additions and 68 deletions
|
@ -26,14 +26,14 @@ SHELL= /bin/sh
|
|||
|
||||
# === Fixed definitions ===
|
||||
|
||||
OBJS= accessobject.o \
|
||||
OBJS= abstract.o accessobject.o \
|
||||
classobject.o fileobject.o floatobject.o \
|
||||
frameobject.o funcobject.o intobject.o listobject.o \
|
||||
longobject.o mappingobject.o methodobject.o \
|
||||
moduleobject.o object.o rangeobject.o stringobject.o \
|
||||
tupleobject.o typeobject.o
|
||||
|
||||
SRCS= accessobject.c \
|
||||
SRCS= abstract.c accessobject.c \
|
||||
classobject.c fileobject.c floatobject.c \
|
||||
frameobject.c funcobject.c intobject.c listobject.c \
|
||||
longobject.c mappingobject.c methodobject.c \
|
||||
|
@ -68,6 +68,7 @@ depend:
|
|||
|
||||
.PRECIOUS: Makefile
|
||||
|
||||
abstract.o: abstract.c
|
||||
accessobject.o: accessobject.c
|
||||
classobject.o: classobject.c
|
||||
fileobject.o: fileobject.c
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue