From: SourceForge.net <no...@so...> - 2006-08-07 21:30:49
|
Read and respond to this message at: https://sourceforge.net/forum/message.php?msg_id=3856978 By: syphius Hi! I found the problem: this code work: FILE: TEST/TEST2.py: def f(): print "bob" BREAK POINT HERE >>> print "bob" print "bob" FILE: TEST.py from TEST.TEST2 import * f() this code doesn't work (breakpoints ignored): FILE: TEST/TEST2.py: def f(): print "bob" BREAK POINT HERE >>> print "bob" print "bob" FILE: TEST.py from TEST.TEST2 import * import psyco psyco.full() f() So it seems to be psyco that doesn't work well with breakpoints (I use psyco 1.51)... ______________________________________________________________________ You are receiving this email because you elected to monitor this forum. To stop monitoring this forum, login to SourceForge.net and visit: https://sourceforge.net/forum/unmonitor.php?forum_id=293649 |