File tree Expand file tree Collapse file tree 5 files changed +17
-172
lines changed Expand file tree Collapse file tree 5 files changed +17
-172
lines changed Original file line number Diff line number Diff line change @@ -6,11 +6,6 @@ What's New in astroid 3.0.0?
66=============================
77Release date: TBA
88
9- * Return all existing arguments when calling ``Arguments.arguments()``. This also means ``find_argname`` will now
10- use the whole list of arguments for its search.
11-
12- Closes #2213
13-
149* Add support for Python 3.12, including PEP 695 type parameter syntax.
1510
1611 Closes #2201
@@ -19,6 +14,22 @@ Release date: TBA
1914
2015 Refs #2137
2116
17+ * Following a deprecation period starting in astroid 2.7.0, the ``astroid.node_classes``
18+ and ``astroid.scoped_nodes`` modules have been removed in favor of ``astroid.nodes.node_classes``
19+ and ``astroid.nodes.scoped_nodes``.
20+
21+ Closes #1072
22+
23+ * Following a deprecation period starting in astroid 2.12.0, the ``astroid.mixins`` module
24+ has been removed in favor of ``astroid.nodes._base_nodes`` (private).
25+
26+ Refs #1633
27+
28+ * Return all existing arguments when calling ``Arguments.arguments()``. This also means ``find_argname`` will now
29+ use the whole list of arguments for its search.
30+
31+ Closes #2213
32+
2233* Exclude class attributes from the ``__members__`` container of an ``Enum`` class when they are
2334 ``nodes.AnnAssign`` nodes with no assigned value.
2435
Original file line number Diff line number Diff line change 3232
3333import functools
3434import tokenize
35- from importlib import import_module
3635
3736# isort: off
38- # We have an isort: off on '__version__ ' because of a circular import in nodes .
37+ # We have an isort: off on 'astroid.nodes ' because of a circular import.
3938from astroid .nodes import node_classes , scoped_nodes
4039
4140# isort: on
Load Diff This file was deleted.
Load Diff This file was deleted.
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments