projects
/
pyutils.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
8403e93
)
small comment change.
author
Scott Gasch
<
[email protected]
>
Mon, 8 May 2023 04:06:07 +0000
(21:06 -0700)
committer
Scott Gasch
<
[email protected]
>
Mon, 8 May 2023 04:06:07 +0000
(21:06 -0700)
src/pyutils/collectionz/bst.py
patch
|
blob
|
history
diff --git
a/src/pyutils/collectionz/bst.py
b/src/pyutils/collectionz/bst.py
index 3d0bccc098cfd32c05dfde418ec01f317e8b3385..3a0fae9b9b11fb84b077fd6c91ee50f7703aa813 100644
(file)
--- a/
src/pyutils/collectionz/bst.py
+++ b/
src/pyutils/collectionz/bst.py
@@
-30,7
+30,8
@@
class Node:
(https://docs.python.org/3/library/functools.html#functools.total_ordering)
Args:
- value: a reference to the value of the node.
+ value: a reference to the value of the node. Must be comparable
+ to other values.
"""
self.left: Optional[Node] = None