Jython Intellij Idea Remote Debugging Using Pycharm Plugin

Before marking this as a duplicate, please read the full stream.

OS - Windows XP Primary Language - Java Scripting Language - Jython IDE - Intellij Idea Python Plugin - Pycharm 

I am trying to remotely debug my application that runs in Java and uses Jython as a scripting language. I followed the steps in the link below
http://www.jetbrains.com/pycharm/webhelp/run-debug-configuration-python-remote-debug.html#commentsSection

  • I can run the debugger
  • When my application starts, it can connect to the debugger

However, I am below the critical WARNING -


pydev debugger: CRITICAL WARNING: this version of python seems to have compiled incorrectly (internal generated file names are not absolute)
Pydev debugger: the debugger can still function, but it will run slower and may skip breakpoints
pydev debugger: Related error: http://bugs.python.org/issue1666807


Problem

The debugger does not stop at break points.

I searched a lot of forums for possible solutions -

  • delete all * .pyc files
  • reinstall python version
  • extract python lib folder to local file and add to sys.path

None of them work for me.

+4
source share

All Articles