More version woes

J

Jive Dadson

This has to do with Komodo. I cannot use Python 2.4, because numpy is
broken on my machine for that release for reasons unknown. I want to
use 2.6 anyway. But when I use Python 2.6 and Komodo 3.5, it runs slow
as death. I think it might have something to do with the warning I'm
getting. Does anyone know what this is about, and what to do about it?
Or can anyone tell me why Komodo 3.5 is slow horribly slow with Python
2.6?


C:\Program Files\ActiveState Komodo
3.5\lib\support\dbgp\pythonlib\dbgp\client.py:813: DeprecationWarning:
BaseException.message has been deprecated as of Python 2.6
self.message = message
C:\Program Files\ActiveState Komodo
3.5\lib\support\dbgp\pythonlib\dbgp\client.py:815: DeprecationWarning:
BaseException.message has been deprecated as of Python 2.6
return self._cmd_error % (self.name,self.tid,self.errid,self.message)


The offending bit of source...

class CommandError(Exception):
"""Breakpoint class

a simple exception that knows how to serialize itself to xml.
"""
_cmd_error = '<response xmlns="urn:debugger_protocol" command="%s"
transaction_id="%s"><error
code="%d"><message><![CDATA[%s]]></message></error></response>'

def __init__(self, name, tid, errid, message):
self.name = name
self.tid = tid
self.errid = errid
self.message = message # THIS IS WHAT IT DOESN'T LIKE
def __str__(self):
return self._cmd_error %
(self.name,self.tid,self.errid,self.message)
 
J

Jive Dadson

Sorry. That deprecation warning has nothing to do with the slowness.
It does torque my jaw, however. Komodo costs money, and Python 2.6
broke it. @#^&!!! (Again.)

So, the new question is, does anyone know how to make Komodo 3.5 run at
speed with Python 2.6? Or perhaps better yet, can someone suggest a
good IDE that doesn't cost much?
 
S

Steven D'Aprano

Sorry. That deprecation warning has nothing to do with the slowness. It
does torque my jaw, however. Komodo costs money, and Python 2.6 broke
it. @#^&!!! (Again.)

So, the new question is, does anyone know how to make Komodo 3.5 run at
speed with Python 2.6? Or perhaps better yet, can someone suggest a
good IDE that doesn't cost much?

Perhaps you should be asking the Komodo forums?

Or since you paid for it, perhaps you should be asking customer support?

I suspect that they'll probably tell you that since the latest version of
Komodo is 5.2, and you're using 3.5, you should stop using a version that
is over four years old and almost certainly not supported.
 
J

Jive Dadson

Steven said:
Perhaps you should be asking the Komodo forums?

Or since you paid for it, perhaps you should be asking customer support?

I suspect that they'll probably tell you that since the latest version of
Komodo is 5.2, and you're using 3.5, you should stop using a version that
is over four years old and almost certainly not supported.

Yep. They want $295, and I cannot justify that for personal use. I'll
be looking for a cheaper one.
 
S

Steven D'Aprano

Yep. They want $295, and I cannot justify that for personal use. I'll
be looking for a cheaper one.


This is why I use a text editor and the interactive console :)
 
D

Diez B. Roggisch

Yep. They want $295, and I cannot justify that for personal use. I'll be
looking for a cheaper one.

There are bazillion discussions in this NG about IDEs and editors. GIYF.

Diez
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,769
Messages
2,569,582
Members
45,065
Latest member
OrderGreenAcreCBD

Latest Threads

Top