summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris McDonough <chrism@plope.com>2012-02-18 15:28:26 -0500
committerChris McDonough <chrism@plope.com>2012-02-18 15:28:26 -0500
commit2be06a6151e6e21ab680dff8c0e669f05c769ab5 (patch)
tree6f61fc1c5daa4f07ae3f7966fa94bcb364b39458
parent99de4d85466711bf0a2321df2c2bf0a273989015 (diff)
downloadpyramid-2be06a6151e6e21ab680dff8c0e669f05c769ab5.tar.gz
pyramid-2be06a6151e6e21ab680dff8c0e669f05c769ab5.tar.bz2
pyramid-2be06a6151e6e21ab680dff8c0e669f05c769ab5.zip
comment
-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 '/'