summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--pyramid/traversal.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/pyramid/traversal.py b/pyramid/traversal.py
index 75931557e..8c1e3f434 100644
--- a/pyramid/traversal.py
+++ b/pyramid/traversal.py
@@ -798,7 +798,7 @@ class ResourceURL(object):
app_url = self.request.application_url # never ends in a slash
return app_url + self.virtual_path
-TraversalContextURL = ResourceURL # bw compat as of 1.3
+TraversalContextURL = ResourceURL # deprecated as of 1.3
deprecated(
'TraversalContextURL',
@@ -809,7 +809,6 @@ deprecated(
'See the "What\'s new In Pyramid 1.3" document for a further description.'
)
-
@lru_cache(1000)
def _join_path_tuple(tuple):
return tuple and '/'.join([quote_path_segment(x) for x in tuple]) or '/'