https://bugs.documentfoundation.org/show_bug.cgi?id=161843
--- Comment #3 from Werner Tietz <[email protected]> --- But thats how its implementet, even in native python you may compare object-identity on integers: ____ a = 42 b = 42 a is b ⇒ True #( a couple of »low« integers seems precompiled in cache ) x = 7856 y = 7856 x is y ⇒ False #( but not every interger ;-) ) _____ and remember »between« python and the LO-object-hierarchy sits anyway the gatekeeper called pyuno! back to your problem: Is it solved by ……Rsid? ⇒ ___ ``` document = XSCRIPTCONTEXT.getDocument() _object1 = document.Text.Start _object2 = document.Text.Start print(f"{_object1.Rsid=}\n{_object2.Rsid=}\n{_object1.Rsid==_object2.Rsid=}") ``` ___ -- You are receiving this mail because: You are the assignee for the bug.
