PyCharm 2019.1 Help

Rename Dialog for a Class

Refactor | Rename
Shift+F6

Use this dialog to rename a class.

In addition to renaming the class itself, PyCharm can also look for the usages of the class name. If found, the changes you are making to the class name can also be applied to these usages.

The usages are assigned to different categories which correspond to the options which you can turn on and off.

Note that regardless of the options selected, the search scope (places where you search for the name occurrences) is always limited to the current entity (for example, a file, or a class) and the entities that the current one depends on.

Item

Description

Rename <class> and its usages to

Specify a new name for the class.

Search in comments and strings

If this checkbox is selected, PyCharm will look for occurrences of the class name within comments and string literals in your source code files.

Search for text occurrences

If this option is on, PyCharm will look for occurrences of the class name in the files that don't contain source code. These may be the text files, properties files, HTML files, documentation files, and so on.

Last modified: 17 July 2019

See Also