summaryrefslogtreecommitdiff
path: root/ChangeLog
diff options
context:
space:
mode:
authorDaniƫl van Noord <13665637+DanielNoord@users.noreply.github.com>2023-04-02 14:16:57 +0200
committerGitHub <noreply@github.com>2023-04-02 14:16:57 +0200
commitc99e4015c68b86833a3516740c54682f45d12908 (patch)
tree751e0ebd24fe0dfa9630bb61f439be8c294d4d72 /ChangeLog
parent0268b762a2f86b43a544df211f2b4ddeec28c7d9 (diff)
downloadastroid-git-c99e4015c68b86833a3516740c54682f45d12908.tar.gz
Clean up the constructors of ``If`` and ``IfExp`` (#2076)
Diffstat (limited to 'ChangeLog')
-rw-r--r--ChangeLog7
1 files changed, 7 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 2dcc8e91..0dd45650 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -10,6 +10,13 @@ Release date: TBA
Closes #1780
+* Improved signature of the ``__init__`` and ``__postinit__`` methods of the following nodes:
+ - ``nodes.If``
+ - ``nodes.IfExp``
+
+ These changes involve breaking changes to their API but should be considered bug fixes. We
+ now make arguments required when they are instead of always providing defaults.
+
* Remove dependency on ``wrapt``.