From 1822100256ce5077dbeb1886c833ef4a1f9538a3 Mon Sep 17 00:00:00 2001 From: Carsten Senger Date: Wed, 5 Jan 2011 15:41:07 +0100 Subject: add model_path_tuple for backward compatibility --- pyramid/traversal.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pyramid/traversal.py b/pyramid/traversal.py index f3377b0d0..f32b43493 100644 --- a/pyramid/traversal.py +++ b/pyramid/traversal.py @@ -352,6 +352,9 @@ def resource_path_tuple(resource, *elements): """ return tuple(_resource_path_list(resource, *elements)) +model_path_tuple = resource_path_tuple # b/w compat + + def _resource_path_list(resource, *elements): """ Implementation detail shared by resource_path and resource_path_tuple""" path = [loc.__name__ or '' for loc in lineage(resource)] -- cgit v1.2.3 From 8673fb4b8bea363bd7fb4ec469492f56e8d14bbb Mon Sep 17 00:00:00 2001 From: Chris McDonough Date: Thu, 6 Jan 2011 19:37:05 -0500 Subject: - Readd ``pyramid.traversal.model_path_tuple`` as an alias for ``pyramid.traversal.resource_path_tuple`` for backwards compatibility. --- CHANGES.txt | 3 +++ 1 file changed, 3 insertions(+) diff --git a/CHANGES.txt b/CHANGES.txt index e66675e64..8dc422abf 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -12,6 +12,9 @@ Bug Fixes - The `self` argument was included in new methods of the ``ISession`` interface signature, causing ``pyramid_beaker`` tests to fail (jkrebs). +- Readd ``pyramid.traversal.model_path_tuple`` as an alias for + ``pyramid.traversal.resource_path_tuple`` for backwards compatibility. + Features -------- -- cgit v1.2.3