Changes between Version 76 and Version 77 of pyson
- Timestamp:
- 11/29/23 14:22:42 (15 months ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
pyson
v76 v77 47 47 You can use {{{typing.Any}}} to indicate you expect any PRIMITIVE type (int, str, dict, etc). 48 48 For security reasons, pyson always requires explicit class for polymorphism and never deserializes just any class, only primitives can be handled this way. 49 50 After deserializing the arguments, the default constructor {{{__init__}}} is used to create the object. This enforces the proper construction, including all argument checks etc. 49 51 50 52 === Deserialization