We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7eb051e commit 4426ae3Copy full SHA for 4426ae3
Source/WrapDelphi.pas
@@ -3835,7 +3835,7 @@ class procedure TPyDelphiObject.RegisterGetSets(PythonType: TPythonType);
3835
PythonType.AddGetSet('__bound__', @TPyDelphiObject.Get_Bound, nil,
3836
'Returns True if the wrapper is still bound to the Delphi instance.', nil);
3837
PythonType.AddGetSet('__owned__', @TPyDelphiObject.Get_Owned, @TPyDelphiObject.Set_Owned,
3838
- 'Returns True if the wrapper owns the Delphi instance.', nil);
+ 'Boolean read/write property that determines weather the wrapper owns the Delphi instance.', nil);
3839
end;
3840
3841
class procedure TPyDelphiObject.RegisterMethods(PythonType: TPythonType);
0 commit comments