python crashes in Komodo

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

    #1

    python crashes in Komodo

    Using the Komodo IDE under XP I often get "python.exe has encountered a
    problem and needs to close". Running python direct on the same app
    gives a list index out of bounds error. Any ideas how to get Komodo to
    give the proper error?

  • Trent Mick

    #2
    Re: python crashes in Komodo

    [swisscheese wrote][color=blue]
    > Using the Komodo IDE under XP I often get "python.exe has encountered a
    > problem and needs to close". Running python direct on the same app
    > gives a list index out of bounds error. Any ideas how to get Komodo to
    > give the proper error?[/color]

    Jim,
    Have you logged a bug in our bug tracker?
    Get help with ActiveState products. Documentation, service status, and direct support for enterprise customers.

    My apologies if you have and we haven't had a chance to get to it.

    Note that we'd need specific details to have a chance at knowing what
    the problem was. Komodo version. Python version. An example Python
    script showing the crash would be invaluable. What OS are you on. Etc.
    etc.

    Trent

    --
    Trent Mick
    TrentM@ActiveSt ate.com

    Comment

    • swisscheese

      #3
      Re: python crashes in Komodo

      Komodo ver 3.5.2, build 227162, platform win32-ix86.
      XP SP 2
      Python 2.4.2

      I did not think to enter the bug as it is so basic - list index out of
      bounds. When I run python at a dos prompt python handles the error
      properly.

      In Komodo, a simple case like this is no problem.
      x = [1,2,3]
      print x[4]

      I'll see if I can get the time to create an app that shows the problem.

      Comment

      • Fredrik Lundh

        #4
        Re: python crashes in Komodo

        "swisschees e" wrote:
        [color=blue]
        > Using the Komodo IDE under XP I often get "python.exe has encountered a
        > problem and needs to close". Running python direct on the same app
        > gives a list index out of bounds error. Any ideas how to get Komodo to
        > give the proper error?[/color]

        is your application using any non-standard (i.e. non-bundled) C extensions ?

        </F>



        Comment

        • jimlewis@emachineshop.com

          #5
          Re: python crashes in Komodo

          > any non-standard (i.e. non-bundled) C extensions ?

          No.

          Comment

          Working...