diff options
| author | Chris McDonough <chrism@plope.com> | 2012-02-18 15:28:26 -0500 |
|---|---|---|
| committer | Chris McDonough <chrism@plope.com> | 2012-02-18 15:28:26 -0500 |
| commit | 2be06a6151e6e21ab680dff8c0e669f05c769ab5 (patch) | |
| tree | 6f61fc1c5daa4f07ae3f7966fa94bcb364b39458 | |
| parent | 99de4d85466711bf0a2321df2c2bf0a273989015 (diff) | |
| download | pyramid-2be06a6151e6e21ab680dff8c0e669f05c769ab5.tar.gz pyramid-2be06a6151e6e21ab680dff8c0e669f05c769ab5.tar.bz2 pyramid-2be06a6151e6e21ab680dff8c0e669f05c769ab5.zip | |
comment
| -rw-r--r-- | pyramid/traversal.py | 3 |
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 '/' |
