summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--abc.py18
1 files changed, 0 insertions, 18 deletions
diff --git a/abc.py b/abc.py
deleted file mode 100644
index c200d64c5..000000000
--- a/abc.py
+++ /dev/null
@@ -1,18 +0,0 @@
-from pyramid import testing
-from pyramid.config import Configurator
-
-
-def total(request, *args):
- return sum(args)
-
-
-def prop(request):
- print("getting the property")
- return "the property"
-
-
-config = Configurator()
-config.add_request_method(total)
-config.add_request_method(prop, reify=True)
-
-request = testing.DummyRequest()