DOC: Clarify that FrozenList is hashable (#47684) · pandas-dev/pandas@74f4e81 (original) (raw)

Skip to content

Provide feedback

Saved searches

Use saved searches to filter your results more quickly

Sign up

Appearance settings

Commit 74f4e81

DOC: Clarify that FrozenList is hashable (#47684)

File tree

1 file changed

lines changed

1 file changed

lines changed

Original file line number Diff line number Diff line change
@@ -18,7 +18,7 @@
18 18 class FrozenList(PandasObject, list):
19 19 """
20 20 Container that doesn't allow setting item *but*
21 - because it's technically non-hashable, will be used
21 + because it's technically hashable, will be used
22 22 for lookups, appropriately, etc.
23 23 """
24 24