From d82c8377ce394cad812dc0d53829f7465b3f3f4e Mon Sep 17 00:00:00 2001 From: Scott Gasch Date: Wed, 29 Sep 2021 09:03:57 -0700 Subject: Workaround likely client bug in letter_compress. Update tests in bst. Add pip_install.sh. --- collect/bst.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'collect') diff --git a/collect/bst.py b/collect/bst.py index 94570f4..8e95fa2 100644 --- a/collect/bst.py +++ b/collect/bst.py @@ -120,8 +120,8 @@ class BinaryTree(object): 75 85 - >>> t.__delitem__(22) - True + >>> del t[22] # Note: bool result is discarded + >>> for value in t.iterate_inorder(): ... print(value) 13 -- cgit v1.3