File tree 5 files changed +17
-172
lines changed 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?
6
6
=============================
7
7
Release date: TBA
8
8
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
-
14
9
* Add support for Python 3.12, including PEP 695 type parameter syntax.
15
10
16
11
Closes #2201
@@ -19,6 +14,22 @@ Release date: TBA
19
14
20
15
Refs #2137
21
16
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
+
22
33
* Exclude class attributes from the ``__members__`` container of an ``Enum`` class when they are
23
34
``nodes.AnnAssign`` nodes with no assigned value.
24
35
Original file line number Diff line number Diff line change 32
32
33
33
import functools
34
34
import tokenize
35
- from importlib import import_module
36
35
37
36
# 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.
39
38
from astroid .nodes import node_classes , scoped_nodes
40
39
41
40
# 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