We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent abcbe35 commit 249d8e2Copy full SHA for 249d8e2
astroid/bases.py
@@ -44,6 +44,7 @@
44
45
# TODO: check if needs special treatment
46
BOOL_SPECIAL_METHOD = "__bool__"
47
+BUILTINS = "builtins" # TODO Remove in 2.8
48
49
PROPERTIES = {"builtins.property", "abc.abstractproperty"}
50
if PY310_PLUS:
astroid/const.py
@@ -5,6 +5,7 @@
5
PY38_PLUS = sys.version_info >= (3, 8)
6
PY39_PLUS = sys.version_info >= (3, 9)
7
PY310_PLUS = sys.version_info >= (3, 10)
8
9
10
11
class Context(enum.Enum):
0 commit comments