[Zope3-checkins] CVS: Zope3/src/zope/app/interfaces - traversing.py:1.3

Albertas Agejevas alga@codeworks.lt
Wed, 19 Mar 2003 14:58:01 -0500


Update of /cvs-repository/Zope3/src/zope/app/interfaces
In directory cvs.zope.org:/tmp/cvs-serv11034/src/zope/app/interfaces

Modified Files:
	traversing.py 
Log Message:
Renamed getPgysicalPathString() to getPath().

Got rid of getPhysicalPath() (which used to return a tuple) by replacing it
by getPath().


=== Zope3/src/zope/app/interfaces/traversing.py 1.2 => 1.3 ===
--- Zope3/src/zope/app/interfaces/traversing.py:1.2	Wed Mar 19 12:55:36 2003
+++ Zope3/src/zope/app/interfaces/traversing.py	Wed Mar 19 14:57:30 2003
@@ -59,8 +59,8 @@
         """Return the physical root object
         """
 
-    def getPhysicalPath():
-        """Return the physical path to the object as a sequence of names.
+    def getPath():
+        """Return the physical path to the object as a string.
         """
 
 class ITraversable(Interface):