0
votes
5answers
71 views
How can I replace a class with another class from another module in a lot of files without a lot of manual editing?
Basically, I have a lot of Python classes (representing our database schema) that look something like this:
from foo import xyz, b, c
class bar(object):
x = xyz()
y = b() …
0
votes
1answer
154 views
How do I do cross-project refactorings with ropemacs?
I have a file structure that looks something like this:
project1_root/
tests/
...
src/
.ropeproject/
project1/
... (project1 source cod …
0
votes
2answers
371 views
pymacs: General question and Installation problem
Hi, all,
I am trying to setup emacs for python development.
From what I read, it is recommended to use python-mode.el rather than the default python.el from Emacs 22.3. So I emb …
