[python] rename __get__ in PyNames.java from GET to DUNDER_GET to avoid confusion

GitOrigin-RevId: 23dd9bc6cb72630e3bee02a2fb160ff38be17d9a
This commit is contained in:
Daniil Kalinin
2024-10-02 17:54:34 +02:00
committed by intellij-monorepo-bot
parent 23d905bd39
commit b786f7cae2
2 changed files with 3 additions and 3 deletions

View File

@@ -73,7 +73,7 @@ public final @NonNls class PyNames {
public static final String NEW = "__new__";
public static final String GETATTR = "__getattr__";
public static final String GETATTRIBUTE = "__getattribute__";
public static final String GET = "__get__";
public static final String DUNDER_GET = "__get__";
public static final String DUNDER_SET = "__set__";
public static final String __CLASS__ = "__class__";
public static final String DUNDER_METACLASS = "__metaclass__";