0
0
mirror of https://github.com/python/cpython.git synced 2024-12-01 11:15:56 +01:00

Make basechain a class variable in stead of initializing it in __init__. That way it's more easily overridden.

This commit is contained in:
Jack Jansen 2001-06-28 22:07:30 +00:00
parent 08a898f85d
commit 1319abf745

View File

@ -3,6 +3,7 @@ from bgenGeneratorGroup import GeneratorGroup
class ObjectDefinition(GeneratorGroup):
"Spit out code that together defines a new Python object type"
basechain = "NULL"
def __init__(self, name, prefix, itselftype):
"""ObjectDefinition constructor. May be extended, but do not override.
@ -21,7 +22,6 @@ class ObjectDefinition(GeneratorGroup):
self.typename = name + '_Type'
self.argref = "" # set to "*" if arg to <type>_New should be pointer
self.static = "static " # set to "" to make <type>_New and <type>_Convert public
self.basechain = "NULL" # set to &<basetype>_chain to chain methods
def add(self, g, dupcheck=0):
g.setselftype(self.objecttype, self.itselftype)