IDEA-CR-54505: PY-38707 Simplify TypedDict type inference in case of complex class hierarchies

GitOrigin-RevId: b29f9d01ae964ff7b7571188ce540ea963c21054
This commit is contained in:
Lada Gagina
2019-10-18 16:55:23 +03:00
committed by intellij-monorepo-bot
parent c4d03b0d6d
commit 3d7fb151e9
4 changed files with 30 additions and 42 deletions

View File

@@ -209,8 +209,6 @@ public class PyNames {
public static final String COLLECTIONS_NAMEDTUPLE_PY2 = COLLECTIONS + "." + NAMEDTUPLE;
public static final String COLLECTIONS_NAMEDTUPLE_PY3 = COLLECTIONS + "." + INIT + "." + NAMEDTUPLE;
public static final String TYPED_DICT = "TypedDict";
public static final String FORMAT = "format";
public static final String ABSTRACTMETHOD = "abstractmethod";