We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d72f299 commit c3805f5Copy full SHA for c3805f5
README.md
@@ -484,6 +484,8 @@ transformers = [
484
]
485
pobj = javaobj.loads("custom_objects.ser", *transformers)
486
487
-# Here we show a field that doesn't belong to the class
488
-print(pobj.field_data["int_not_in_fields"]
+# Here we show a field that isn't visible from the class description
+# The field belongs to the class but it's not serialized by default because
489
+# it's static. See: https://stackoverflow.com/a/16477421/12621168
490
+print(pobj.field_data["int_not_in_fields"])
491
```
0 commit comments