Changes between Initial Version and Version 1 of Ticket #33680, comment 2


Ignore:
Timestamp:
May 5, 2022, 11:39:05 PM (2 years ago)
Author:
Mariusz Felisiak

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #33680, comment 2

    initial v1  
    1515-        instance._loaded_values = dict(zip(field_names, values))
    1616+        instance._loaded_values = dict(
    17 +            zip(field_names, (value for value from values where value is not DEFERRED))
     17+            zip(field_names, (value for value in values if value is not DEFERRED))
    1818+        )
    1919         return instance
Back to Top