From 9fe253bbbb035e11762bfcaddae5b6f150b1c0ef Mon Sep 17 00:00:00 2001 From: Joe Shochet Date: Fri, 24 May 2002 17:09:44 +0000 Subject: [PATCH] *** empty log message *** --- direct/src/showbase/PythonUtil.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/direct/src/showbase/PythonUtil.py b/direct/src/showbase/PythonUtil.py index de28550a27..1113095852 100644 --- a/direct/src/showbase/PythonUtil.py +++ b/direct/src/showbase/PythonUtil.py @@ -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,