PyCharm 2019.1 Help

Rename refactorings

The Rename refactoring lets you change names of symbols, files and all the references to them throughout code.

Renaming local variables or private methods can be done easily inline since only the limited scope is affected. Renaming classes or public methods could potentially impact a lot of files. Preview potential changes before you refactor.

  1. In the editor, select an element you want to rename. If you need to rename a file or a directory, select one in the Project tool window.

  2. Press Shift+F6 or from the main menu, select Refactor | Rename.

  3. You can perform a rename refactoring in-place or press Shift+F6 again to open the Rename dialog if you need to specify additional options. For example, specify where to search for element occurrences, or what else to rename.

    The Rename dialog

  4. Click Preview to see the potential changes and click Refactor.

Next time you invoke the Rename refactoring, PyCharm remembers the options you have specified inside the Rename dialog.

Examples

Let's rename a method:

Before

After

def was_published_today(self): return self.pub_date.date () == datetime.date.today()
def published_today(self): return self.pub_date.date () == datetime.date.today()
Last modified: 17 July 2019

See Also