1

A simple matter makes me suffering as I'm new to PyS60 development.

What is the IDE for

  • Executing program on-device with a single reasonable amount of clicks,
  • Typical step-into, step-over, run-to, watch (used from PC) for the on-device running program ?
bohdan_trotsenko
  • 5,167
  • 3
  • 43
  • 70
  • There are some PyS60 debugging techniques described at http://wiki.forum.nokia.com/index.php/Python_debugging_techniques but not the kind of on-device debugging you seem to be looking for. – laalto Aug 20 '09 at 13:01

1 Answers1

1

Real on-device debugging is not (yet) possible, I'm afraid. You have to use popup notes, audio.say() or write to log files.

Personally I forward sys.stdout and sys.edterr into a log file and use sys.settrace() and sys.setprofile(). Works reasonably well, no need to modify real app source code, just dump EVERYTHING into a log file and do search afterwards.

JOM
  • 8,139
  • 6
  • 78
  • 111