diff options
author | Pierre Sassoulas <pierre.sassoulas@gmail.com> | 2021-06-20 22:14:44 +0200 |
---|---|---|
committer | Pierre Sassoulas <pierre.sassoulas@gmail.com> | 2021-06-20 22:19:31 +0200 |
commit | 47537ebc8b5e869be4b853da1350e865bcbc1aa1 (patch) | |
tree | 959b63859228d9fdbf08985e66e7f4ecc98115dd /astroid | |
parent | a6d49dadd71aa7076dfebb36b79a07b458bbba9d (diff) | |
download | astroid-git-47537ebc8b5e869be4b853da1350e865bcbc1aa1.tar.gz |
Add a todo to remove Load, Del, Store
Diffstat (limited to 'astroid')
-rw-r--r-- | astroid/const.py | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/astroid/const.py b/astroid/const.py index 795c3c1b..2054569b 100644 --- a/astroid/const.py +++ b/astroid/const.py @@ -13,6 +13,7 @@ class Context(enum.Enum): Del = 3 -Load = Context.Load -Store = Context.Store -Del = Context.Del +# TODO Remove in 3.0 in favor of Context +Load = Context.Load # pylint: disable=invalid-name +Store = Context.Store # pylint: disable=invalid-name +Del = Context.Del # pylint: disable=invalid-name |