From 2be06a6151e6e21ab680dff8c0e669f05c769ab5 Mon Sep 17 00:00:00 2001 From: Chris McDonough Date: Sat, 18 Feb 2012 15:28:26 -0500 Subject: comment --- pyramid/traversal.py | 3 +-- 1 file changed, 1 insertion(+), 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 '/' -- cgit v1.2.3