Tagged Questions

1
vote
5answers
126 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() z = c() ...