Clarify that Callable will not be encoded with var_to_bytes

(cherry picked from commit c909354396)
This commit is contained in:
A Thousand Ships 2023-08-16 13:57:54 +02:00 committed by Yuri Sizov
parent 6b3e4bb0ec
commit b6d78d8eb7

View File

@ -1428,6 +1428,7 @@
<description>
Encodes a [Variant] value to a byte array, without encoding objects. Deserialization can be done with [method bytes_to_var].
[b]Note:[/b] If you need object serialization, see [method var_to_bytes_with_objects].
[b]Note:[/b] Encoding [Callable] is not supported and will result in an empty value, regardless of the data.
</description>
</method>
<method name="var_to_bytes_with_objects">
@ -1435,6 +1436,7 @@
<param index="0" name="variable" type="Variant" />
<description>
Encodes a [Variant] value to a byte array. Encoding objects is allowed (and can potentially include executable code). Deserialization can be done with [method bytes_to_var_with_objects].
[b]Note:[/b] Encoding [Callable] is not supported and will result in an empty value, regardless of the data.
</description>
</method>
<method name="var_to_str">