Okay I installed Python 2.4.3 (#69, Mar 29 2006, 17:35:34) [MSC v.1310 32 bit (Intel)] on win32. I attempted to turn the debugger on by clicking
Debugger under
Debug menu. It appeared to work fluidly. I then wrote a simple class
class holamundo:
def __init__(self, killerInMe):
self.killerInYou = killerInMe
print("Hi Mom")
def fuzzy(self, J):
if J > 0:
return self.killerInYou
else:
print ("Je suis une filla")
return 42 while testing the specific aspects in the interprecter everyting worked and appeared in the stack as this example:
bdb.run(), line 366: exec cmd in globals, locals
> __main__, line 1: undefmeth(1,1,1,1,1,1,1,)
You'll need to explain a little more in detail what step you performed and where/how it failed you so help can be provided, because it seems to be working functionally out of box.