*** empty log message ***

This commit is contained in:
Joe Shochet 2002-05-24 17:09:44 +00:00
parent 11019db0a0
commit 9fe253bbbb
1 changed files with 2 additions and 2 deletions

View File

@ -46,7 +46,7 @@ def getClassLineage(obj):
return []
def pdir(obj, str = None, fOverloaded = 0, width = None,
fTruncate = 1, lineWidth = 75):
fTruncate = 1, lineWidth = 75, wantPrivate = 0):
# Remove redundant class entries
uniqueLineage = []
for l in getClassLineage(obj):
@ -57,7 +57,7 @@ def pdir(obj, str = None, fOverloaded = 0, width = None,
# Pretty print out directory info
uniqueLineage.reverse()
for obj in uniqueLineage:
_pdir(obj, str, fOverloaded, width, fTruncate, lineWidth)
_pdir(obj, str, fOverloaded, width, fTruncate, lineWidth, wantPrivate)
print
def _pdir(obj, str = None, fOverloaded = 0, width = None,