15
0

- update to v2.12.14:

* Handle the effect of properties on the __init__ of a dataclass
    correctly.
  * Handle the effect of kw_only=True in dataclass fields correctly.
  * Handle the effect of init=False in dataclass fields correctly.
  * Fix crash if numpy module doesn't have version attribute.
  * Handle AttributeError during str.format template inference tip
    evaluation

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-astroid?expand=0&rev=80
This commit is contained in:
2023-01-07 08:53:07 +00:00
committed by Git OBS Bridge
parent 2c5918efbd
commit 77ba4a3f17
4 changed files with 17 additions and 5 deletions

View File

@@ -1,3 +1,15 @@
-------------------------------------------------------------------
Sat Jan 7 08:50:36 UTC 2023 - Dirk Müller <dmueller@suse.com>
- update to v2.12.14:
* Handle the effect of properties on the __init__ of a dataclass
correctly.
* Handle the effect of kw_only=True in dataclass fields correctly.
* Handle the effect of init=False in dataclass fields correctly.
* Fix crash if numpy module doesn't have version attribute.
* Handle AttributeError during str.format template inference tip
evaluation
-------------------------------------------------------------------
Sat Dec 3 03:46:28 UTC 2022 - Yogalakshmi Arunachalam <yarunachalam@suse.com>