[Zope3-checkins] CVS: Zope3/utilities - finddeps.py:1.10
Fred L. Drake, Jr.
fred at zope.com
Thu Mar 11 17:59:35 EST 2004
Update of /cvs-repository/Zope3/utilities
In directory cvs.zope.org:/tmp/cvs-serv17348
Modified Files:
finddeps.py
Log Message:
clarify a docstring
=== Zope3/utilities/finddeps.py 1.9 => 1.10 ===
--- Zope3/utilities/finddeps.py:1.9 Thu Mar 11 15:23:35 2004
+++ Zope3/utilities/finddeps.py Thu Mar 11 17:59:35 2004
@@ -78,8 +78,7 @@
self.occurences.append((file, lineno))
def isSubPackageOf(self, dep):
- """Check wether this dependency's path is represents a sub-package of
- dep's path."""
+ """Return True if this dependency's path is a sub-package of dep."""
path = self.path.split('.')
deppath = dep.path.split('.')
for i in range(len(path)):
More information about the Zope3-Checkins
mailing list