summaryrefslogtreecommitdiff
path: root/wsme/runtime.py
diff options
context:
space:
mode:
Diffstat (limited to 'wsme/runtime.py')
-rw-r--r--wsme/runtime.py9
1 files changed, 0 insertions, 9 deletions
diff --git a/wsme/runtime.py b/wsme/runtime.py
deleted file mode 100644
index e114d13..0000000
--- a/wsme/runtime.py
+++ /dev/null
@@ -1,9 +0,0 @@
-from wsme.exc import MissingArgument
-
-
-def check_arguments(funcdef, args, kw):
- """Check if some arguments are missing"""
- assert len(args) == 0
- for arg in funcdef.arguments:
- if arg.mandatory and arg.name not in kw:
- raise MissingArgument(arg.name)