From: Georg Brandl Date: Mon, 1 Jun 2009 17:23:51 +0000 (+0000) Subject: Use true boolean for flag argument. X-Git-Tag: v3.1rc2~108 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=5ce83a004fc0904a43c901c4144c041e2a4155d7;p=thirdparty%2FPython%2Fcpython.git Use true boolean for flag argument. --- diff --git a/Lib/inspect.py b/Lib/inspect.py index c316906dd51b..fe3ffc7de5d6 100644 --- a/Lib/inspect.py +++ b/Lib/inspect.py @@ -704,7 +704,7 @@ def walktree(classes, children, parent): results.append(walktree(children[c], children, c)) return results -def getclasstree(classes, unique=0): +def getclasstree(classes, unique=False): """Arrange the given list of classes into a hierarchy of nested lists. Where a nested list appears, it contains classes derived from the class