From andreas.roehler at online.de Mon Nov 1 09:54:24 2010 From: andreas.roehler at online.de (=?ISO-8859-1?Q?Andreas_R=F6hler?=) Date: Mon, 01 Nov 2010 09:54:24 +0100 Subject: [Python-mode] Bug in python-mode.el 5.1.0? In-Reply-To: <87aalwt0ah.fsf@ID-24456.user.uni-berlin.de> References: <87aalwt0ah.fsf@ID-24456.user.uni-berlin.de> Message-ID: <4CCE8040.8020303@online.de> Am 30.10.2010 12:57, schrieb Christoph Conrad: > Hi, > > i assume the following code should be changed: > > ;; TBD: a horrible hack, but why create new Custom variables? > ;; -cco- OLD: (let ((cmd (concat py-which-shell (if (string-equal py-which-bufname > (let ((cmd (concat shell (if (string-equal py-which-bufname > "Jython") > " -" "")))) > > Regards, > Christoph > _______________________________________________ Hi Christoph, it will be helpful, if you could make an entry in the bugtracker at https://bugs.launchpad.net/python-mode Thanks for your reports. Andreas -- https://code.launchpad.net/~a-roehler/python-mode/python-mode-components https://code.launchpad.net/s-x-emacs-werkstatt/ From yields.falsehood at gmail.com Sat Nov 6 08:36:04 2010 From: yields.falsehood at gmail.com (E. S.) Date: Sat, 6 Nov 2010 03:36:04 -0400 Subject: [Python-mode] Is python-mode right for temporary buffers? Message-ID: After creating a new temporary buffer, (py-execute-region) calls (python-mode) in the temp buffer. That call to (python-mode) was becoming a pain - every time I ran a piece of code, emacs was slowing me down as it re-loaded the libraries I have hooked in to python-mode. Commenting out line 1,733 sped things up.