From f054ce22528f1dde081f325bc5006514c9160384 Mon Sep 17 00:00:00 2001 From: Frames White Date: Tue, 14 Oct 2025 12:00:10 +0800 Subject: [PATCH] Specify that JuliaDict / JuliaSet it is a MutableMapping/Set --- docs/src/juliacall-reference.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/src/juliacall-reference.md b/docs/src/juliacall-reference.md index b67d8b26..0aa8e6d7 100644 --- a/docs/src/juliacall-reference.md +++ b/docs/src/juliacall-reference.md @@ -158,13 +158,13 @@ This wraps any Julia `AbstractVector` value. It is a subclass of `juliacall.Arra `````@customdoc juliacall.DictValue - Class -This wraps any Julia `AbstractDict` value. It is a subclass of `collections.abc.Mapping` and +This wraps any Julia `AbstractDict` value. It is a subclass of `collections.abc.MutableMapping` and behaves similar to a Python `dict`. ````` `````@customdoc juliacall.SetValue - Class -This wraps any Julia `AbstractSet` value. It is a subclass of `collections.abc.Set` and +This wraps any Julia `AbstractSet` value. It is a subclass of `collections.abc.MutableSet` and behaves similar to a Python `set`. `````