diff options
Diffstat (limited to 'Tools/modulator/Templates/object_method')
-rw-r--r-- | Tools/modulator/Templates/object_method | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/Tools/modulator/Templates/object_method b/Tools/modulator/Templates/object_method new file mode 100644 index 0000000..20896de --- /dev/null +++ b/Tools/modulator/Templates/object_method @@ -0,0 +1,11 @@ + +static object * +$abbrev$_$method$(self, args) + $abbrev$object *self; + object *args; +{ + if (!newgetargs(args, "")) + return NULL; + INCREF(None); + return None; +} |