Workaround likely client bug in letter_compress. Update tests in bst.
[python_utils.git] / collect / bst.py
index 94570f49be8490b4656d2b4ea12185a44c636212..8e95fa23aeb09c4d86ffd74055358fd54f2002c7 100644 (file)
@@ -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