Jython Debugger?

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • max khesin

    Jython Debugger?

    Hi all,
    I was takling to someone who has been using Jython for a while. Their
    biggest complaint is the luck of a good debugger. I was really
    surprised. Isn't there anything decent out there?
    thanks,
    max
  • F. GEIGER

    #2
    Re: Jython Debugger?

    I'm looking for such a thing too. All I've found so far is an announcement
    of an Eclipse plugin.

    Regards
    Franz GEIGER

    "max khesin" <max@NcOviSsPiA oMntech.com> schrieb im Newsbeitrag
    news:jkL0c.94$c 73.143227@twist er.nyc.rr.com.. .[color=blue]
    > Hi all,
    > I was takling to someone who has been using Jython for a while. Their
    > biggest complaint is the luck of a good debugger. I was really
    > surprised. Isn't there anything decent out there?
    > thanks,
    > max[/color]


    Comment

    • ziaran

      #3
      Re: Jython Debugger?

      F. GEIGER wrote:[color=blue]
      > I'm looking for such a thing too. All I've found so far is an announcement
      > of an Eclipse plugin.
      >
      > Regards
      > Franz GEIGER
      >
      > "max khesin" <max@NcOviSsPiA oMntech.com> schrieb im Newsbeitrag
      > news:jkL0c.94$c 73.143227@twist er.nyc.rr.com.. .
      >[color=green]
      >>Hi all,
      >>I was takling to someone who has been using Jython for a while. Their
      >>biggest complaint is the luck of a good debugger. I was really
      >>surprised. Isn't there anything decent out there?
      >>thanks,
      >>max[/color]
      >
      >
      >[/color]

      try rpdb.py
      you can get it at:


      Comment

      • max khesin

        #4
        Re: Jython Debugger?

        (forgive the simpleton)
        How do you envision this working in Jython environment?

        thanks,
        max.

        ziaran wrote:
        [color=blue]
        > F. GEIGER wrote:
        >[color=green]
        >> I'm looking for such a thing too. All I've found so far is an
        >> announcement
        >> of an Eclipse plugin.
        >>
        >> Regards
        >> Franz GEIGER
        >>
        >> "max khesin" <max@NcOviSsPiA oMntech.com> schrieb im Newsbeitrag
        >> news:jkL0c.94$c 73.143227@twist er.nyc.rr.com.. .
        >>[color=darkred]
        >>> Hi all,
        >>> I was takling to someone who has been using Jython for a while. Their
        >>> biggest complaint is the luck of a good debugger. I was really
        >>> surprised. Isn't there anything decent out there?
        >>> thanks,
        >>> max[/color]
        >>
        >>
        >>
        >>[/color]
        >
        > try rpdb.py
        > you can get it at:
        > http://ziaran.org/rpdb.htm
        >[/color]

        Comment

        • ziaran

          #5
          Re: Jython Debugger?

          max khesin wrote:[color=blue]
          > (forgive the simpleton)
          > How do you envision this working in Jython environment?
          >
          > thanks,
          > max.
          >
          > ziaran wrote:
          >[color=green]
          >> F. GEIGER wrote:
          >>[color=darkred]
          >>> I'm looking for such a thing too. All I've found so far is an
          >>> announcement
          >>> of an Eclipse plugin.
          >>>
          >>> Regards
          >>> Franz GEIGER
          >>>
          >>> "max khesin" <max@NcOviSsPiA oMntech.com> schrieb im Newsbeitrag
          >>> news:jkL0c.94$c 73.143227@twist er.nyc.rr.com.. .
          >>>
          >>>> Hi all,
          >>>> I was takling to someone who has been using Jython for a while. Their
          >>>> biggest complaint is the luck of a good debugger. I was really
          >>>> surprised. Isn't there anything decent out there?
          >>>> thanks,
          >>>> max
          >>>
          >>>
          >>>
          >>>
          >>>[/color]
          >>
          >> try rpdb.py
          >> you can get it at:
          >> http://ziaran.org/rpdb.htm
          >>[/color][/color]

          Max, I didn't hear about Jython until today, but if it runs Python code
          it should run the debugger, since it it written in Pythonish.

          Comment

          • cmkl

            #6
            Re: Jython Debugger?

            If emacs is an option you can use a recent version of
            python_mode.el with pdbtrack support. Works with python
            and jython as well.

            Simply place a "import pdb" in your module and add a line
            with "pdb.set_trace( )" to start debugging from this
            line on. Then start your script from within emacs.

            Debugging is still done with commandline but emacs
            automagically show all the sources with the current line
            in its editor window.

            I'm still looking for a real graphically debugger though.

            Carl

            max khesin <max@NcOviSsPiA oMntech.com> wrote in message news:<jkL0c.94$ c73.143227@twis ter.nyc.rr.com> ...[color=blue]
            > Hi all,
            > I was takling to someone who has been using Jython for a while. Their
            > biggest complaint is the luck of a good debugger. I was really
            > surprised. Isn't there anything decent out there?
            > thanks,
            > max[/color]

            Comment

            • Skip Montanaro

              #7
              Re: Jython Debugger?


              Carl> I'm still looking for a real graphically debugger though.

              What visual features do you want that an X/Emacs+gdb+pytho n-mode+pdbtrack
              can't give you?

              Skip

              Comment

              • max khesin

                #8
                Re: Jython Debugger?

                (Un) fortunately the new folk (me) have not fallen for emacs (yet).

                Skip Montanaro wrote:
                [color=blue]
                > Carl> I'm still looking for a real graphically debugger though.
                >
                > What visual features do you want that an X/Emacs+gdb+pytho n-mode+pdbtrack
                > can't give you?
                >
                > Skip
                >[/color]

                Comment

                Working...