From d1a39dfda5e58a56c6b601a0ad641f99b72499e8 Mon Sep 17 00:00:00 2001 From: Karthik Velayutham Date: Tue, 12 Jul 2022 13:42:55 -0500 Subject: [PATCH] DOC: Clarify that FrozenList is hashable --- pandas/core/indexes/frozen.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pandas/core/indexes/frozen.py b/pandas/core/indexes/frozen.py index deb6ac2c80a81..90713e846fbd1 100644 --- a/pandas/core/indexes/frozen.py +++ b/pandas/core/indexes/frozen.py @@ -18,7 +18,7 @@ class FrozenList(PandasObject, list): """ Container that doesn't allow setting item *but* - because it's technically non-hashable, will be used + because it's technically hashable, will be used for lookups, appropriately, etc. """