First time here? Check out the FAQ!

philippecmartin's profile - activity

2021-05-15 02:31:44 -0500 received badge Famous Question (source)
2021-05-15 02:31:44 -0500 received badge Notable Question (source)
2020-06-14 08:50:06 -0500 received badge Popular Question (source)
2020-06-08 10:46:14 -0500 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 18:55:12 -0500 answered a question Object as param. introspection

Will try - thanks

2020-06-03 22:56:51 -0500 received badge Student (source)
2020-06-03 22:54:49 -0500 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__