summaryrefslogtreecommitdiff
path: root/pyramid/interfaces.py
diff options
context:
space:
mode:
Diffstat (limited to 'pyramid/interfaces.py')
-rw-r--r--pyramid/interfaces.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/pyramid/interfaces.py b/pyramid/interfaces.py
index 275209737..2a14df7c7 100644
--- a/pyramid/interfaces.py
+++ b/pyramid/interfaces.py
@@ -760,15 +760,15 @@ class IContextURL(IResourceURL):
#
# class Fudge(object):
# def __init__(self, one, two):
- # print one, two
+ # print(one, two)
# class Another(object):
# def __init__(self, one, two):
- # print one, two
+ # print(one, two)
# ob = object()
# r.registerAdapter(Fudge, (Interface, Interface), IContextURL)
- # print r.queryMultiAdapter((ob, ob), IResourceURL)
+ # print(r.queryMultiAdapter((ob, ob), IResourceURL))
# r.registerAdapter(Another, (Interface, Interface), IResourceURL)
- # print r.queryMultiAdapter((ob, ob), IResourceURL)
+ # print(r.queryMultiAdapter((ob, ob), IResourceURL))
#
# prints
#