First time here? Check out the FAQ!

philippecmartin's profile - activity

2021-05-15 07:31:44 +0000 received badge Famous Question (source)
2021-05-15 07:31:44 +0000 received badge Notable Question (source)
2020-06-14 13:50:06 +0000 received badge Popular Question (source)
2020-06-08 15:46:14 +0000 marked best answer Object as param. introspection

Hi, example: I have a method that takes two objects as constructor param (class0.__init__ (class1.obj1, class2.obj2)

Before debugging class0.method1 the editor finds one (ex: typing class1.obj1. will popup a list of possibilities).

However the second object (class2.ob2) will only be "known" when debugging the method.

What I do for now is clear a local var in class0.method1 which instantiate a bogus object for class1 or class2 then change it to point to the actual object before running. Works but tedious.

What should I be looking for to fix this ?

Regards, Philippe

2020-06-04 23:55:12 +0000 answered a question Object as param. introspection

Will try - thanks

2020-06-04 03:56:51 +0000 received badge Student (source)
2020-06-04 03:54:49 +0000 asked a question Object as param. introspection

Object as param. introspection Hi, example: I have a method that takes two objects as constructor param (class0.__init_