Details
-
Suggestion
-
Resolution: Won't Do
-
Not Evaluated
-
None
-
None
-
None
Description
I might be misunderstanding here, but I believe if I have a method in Python like:
@Slot(name="myMethod")
def my_method(self):
It should be available to QML as myMethod, which I would expect to be reflected by pyside6-metaobjectdump.
However, when I run pyside6-metaobjectdump, the generated type information is always
Method { name: "my_method" }
Have I misunderstood, or should it be using the name argument?