From d674e17e961e0f466678106861627ce3d03840ca Mon Sep 17 00:00:00 2001 From: Tim Peters Date: Sun, 10 Mar 2002 07:59:13 +0000 Subject: [PATCH] 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. --- Lib/test/test_generators.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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): -- 2.50.1