How to "statically type" an instance of class that I pass to a method of other
instance?
I suppose there shall be some kind of method decorator to treat an argument as
an instance of class?
Generally it is needed so IDE (PyCharm) can auto-complete instance's methods
and properties.
Pseudo-pyt
press_keys()
On Tuesday, November 20, 2012 2:18:38 PM UTC+2, Michael Herrmann wrote:
> Hi,
>
>
>
> I'm developing a GUI Automation library (http://www.getautoma.com) and am
> having difficulty picking a name for the function that simulates key strokes.
> I currently have it as 'type' but tha