Thread: about idle
View Single Post
Old May 23rd, 2006, 10:18 PM   #5
gryfang
Programmer
 
gryfang's Avatar
 
Join Date: May 2006
Location: Ohio
Posts: 36
Rep Power: 0 gryfang is on a distinguished road
Send a message via AIM to gryfang
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.
__________________
--------------------
LOAD "*" ,8,1

God bless
- Gryfang
gryfang is offline   Reply With Quote