[Bf-committers] Quicktime & autoconf

Kester Maddock bf-committers@blender.org
Sun, 4 May 2003 01:40:52 +1200


Hi Meino,

Try running blender from a console and adding
import pdb
to the top of the lanc_povanim226_11.py script (say line 35)
and change
print "That's began!! :) "; windows(1)
del sys
to
print "That's began!! :) "
pdb.set_trace()
windows(1)
del sys

Alt-P and use Alt-Tab to switch to the console.  You should have a (pdb) 
prompt which is a barebones python debugger.  Type help for help, and there 
are instructions at /usr/lib/pythonVERSION/pdb.doc

Kester