From a3bc056e133942cb06936b24651c63c24c677ebf Mon Sep 17 00:00:00 2001 From: Coderambling <159031875+Coderambling@users.noreply.github.com> Date: Thu, 2 Jul 2026 14:28:12 +0200 Subject: [PATCH] Change value of script_repr_suppress_defaults to False in example codeblock The doc says: "If you want a record of the complete set of parameter values, including all defaults, you can enable that behavior:" n the code block that follows, script_repr_suppress_defaults is set to True. But in order to show the complete set of parameter values, suppression should be set to False. Also, the document should mention the default value for script_repr_suppress_defaults. It seems that by default it is set to True. In the API reference documentation, I was unable to find mention of script_repr_suppress_defaults . This seems to be a documentation gap. Should I file a separate issue for this? --- doc/user_guide/Serialization_and_Persistence.ipynb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/user_guide/Serialization_and_Persistence.ipynb b/doc/user_guide/Serialization_and_Persistence.ipynb index 8f5917b4..e419c6e4 100644 --- a/doc/user_guide/Serialization_and_Persistence.ipynb +++ b/doc/user_guide/Serialization_and_Persistence.ipynb @@ -495,7 +495,7 @@ "outputs": [], "source": [ "import param.parameterized\n", - "param.parameterized.script_repr_suppress_defaults=True" + "param.parameterized.script_repr_suppress_defaults=False" ] }, {