Handle argref so it can be overridden more easily in a subclass.
This commit is contained in:
parent
fafc1aeccc
commit
6d394d9b68
|
@ -6,6 +6,7 @@ class ObjectDefinition(GeneratorGroup):
|
||||||
basechain = "NULL"
|
basechain = "NULL"
|
||||||
tp_flags = "Py_TPFLAGS_DEFAULT"
|
tp_flags = "Py_TPFLAGS_DEFAULT"
|
||||||
basetype = None
|
basetype = None
|
||||||
|
argref = "" # set to "*" if arg to <type>_New should be pointer
|
||||||
|
|
||||||
def __init__(self, name, prefix, itselftype):
|
def __init__(self, name, prefix, itselftype):
|
||||||
"""ObjectDefinition constructor. May be extended, but do not override.
|
"""ObjectDefinition constructor. May be extended, but do not override.
|
||||||
|
@ -22,7 +23,6 @@ class ObjectDefinition(GeneratorGroup):
|
||||||
self.itselftype = itselftype
|
self.itselftype = itselftype
|
||||||
self.objecttype = name + 'Object'
|
self.objecttype = name + 'Object'
|
||||||
self.typename = name + '_Type'
|
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.static = "static " # set to "" to make <type>_New and <type>_Convert public
|
||||||
self.modulename = None
|
self.modulename = None
|
||||||
if hasattr(self, "assertions"):
|
if hasattr(self, "assertions"):
|
||||||
|
|
Loading…
Reference in New Issue