summaryrefslogtreecommitdiff
path: root/collect
diff options
context:
space:
mode:
authorScott Gasch <[email protected]>2021-09-29 09:03:57 -0700
committerScott Gasch <[email protected]>2021-09-29 09:03:57 -0700
commitd82c8377ce394cad812dc0d53829f7465b3f3f4e (patch)
tree182e7350b4c383274925bce6589b031d4c57fc4c /collect
parent986d5f7ada15e56019518db43d07b76f94468e1a (diff)
Workaround likely client bug in letter_compress. Update tests in bst.
Add pip_install.sh.
Diffstat (limited to 'collect')
-rw-r--r--collect/bst.py4
1 files changed, 2 insertions, 2 deletions
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