summaryrefslogtreecommitdiffstats
path: root/Tools/modulator/Templates/module_method
diff options
context:
space:
mode:
Diffstat (limited to 'Tools/modulator/Templates/module_method')
-rw-r--r--Tools/modulator/Templates/module_method12
1 files changed, 12 insertions, 0 deletions
diff --git a/Tools/modulator/Templates/module_method b/Tools/modulator/Templates/module_method
new file mode 100644
index 0000000..bf64e79
--- /dev/null
+++ b/Tools/modulator/Templates/module_method
@@ -0,0 +1,12 @@
+
+static object *
+$abbrev$_$method$(self, args)
+ object *self; /* Not used */
+ object *args;
+{
+
+ if (!newgetargs(args, ""))
+ return NULL;
+ INCREF(None);
+ return None;
+}