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: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=5ce83a004fc0904a43c901c4144c041e2a4155d7;p=python Use true boolean for flag argument. --- diff --git a/Lib/inspect.py b/Lib/inspect.py index c316906dd5..fe3ffc7de5 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