From: Tim Peters Date: Sun, 10 Mar 2002 07:59:13 +0000 (+0000) Subject: SF patch 499062: Minor typo in test_generators.py. X-Git-Tag: v2.3c1~6535 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=d674e17e961e0f466678106861627ce3d03840ca;p=python SF patch 499062: Minor typo in test_generators.py. There's no actual patch there. It's an objection that Guido's example doesn't actually generator "leaves", so change the comment that says it does. --- diff --git a/Lib/test/test_generators.py b/Lib/test/test_generators.py index 2c319e5db9..155a83cb21 100644 --- a/Lib/test/test_generators.py +++ b/Lib/test/test_generators.py @@ -259,7 +259,7 @@ Guido's binary tree example. >>> # Show it off: create a tree. >>> t = tree("ABCDEFGHIJKLMNOPQRSTUVWXYZ") - >>> # A recursive generator that generates Tree leaves in in-order. + >>> # A recursive generator that generates Tree labels in in-order. >>> def inorder(t): ... if t: ... for x in inorder(t.left):