Changes between Version 76 and Version 77 of pyson


Ignore:
Timestamp:
11/29/23 14:22:42 (15 months ago)
Author:
wouter
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • pyson

    v76 v77  
    4747You can use {{{typing.Any}}} to indicate you expect any PRIMITIVE type (int, str, dict, etc).
    4848For security reasons, pyson always requires explicit class for polymorphism and never deserializes just any class, only primitives can be handled this way.
     49
     50After deserializing the arguments, the default constructor {{{__init__}}} is used to create the object. This enforces the proper construction, including all argument checks etc.
    4951
    5052=== Deserialization