15
0
forked from pool/python-atom

- update to 0.9.0:

* fix the generation of Subclass from type annotations PR #193
  * move getstate and setstate implementation to C and allow to
    customize the condition under which a member value is
    pickled. PR #182
  * Customization is used to only pickle member value whose
    state can be restored (for example Constant is not
    pickled). Whether a member is pickled can be customized
    using a method prefixed with ``_getstate_`` on an Atom
    subclass.
  * use the Typed member when a type annotation resolve to a
    single type whose metaclass does not implement a custom
    ``__instancecheck__`` PR #185
  * generate Tuple member for tuple[] annotations.
    The content of the tuple is typed check only if it is a
    1-tuple or variable-length tuple. PR #184
  * fix the resolution order of members in the presence of
    multiple inheritance with a common base class PR
  * Due to the above changes, adding a member after the class
    definition requires more work than before. As a
    consequence a new helper function ``add_member`` has
    been added.

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-atom?expand=0&rev=14
This commit is contained in:
2023-03-01 13:57:06 +00:00
committed by Git OBS Bridge
parent fa8da4313d
commit 182c869975
4 changed files with 31 additions and 5 deletions

View File

@@ -1,3 +1,29 @@
-------------------------------------------------------------------
Wed Mar 1 13:53:30 UTC 2023 - Dirk Müller <dmueller@suse.com>
- update to 0.9.0:
* fix the generation of Subclass from type annotations PR #193
* move getstate and setstate implementation to C and allow to
customize the condition under which a member value is
pickled. PR #182
* Customization is used to only pickle member value whose
state can be restored (for example Constant is not
pickled). Whether a member is pickled can be customized
using a method prefixed with ``_getstate_`` on an Atom
subclass.
* use the Typed member when a type annotation resolve to a
single type whose metaclass does not implement a custom
``__instancecheck__`` PR #185
* generate Tuple member for tuple[] annotations.
The content of the tuple is typed check only if it is a
1-tuple or variable-length tuple. PR #184
* fix the resolution order of members in the presence of
multiple inheritance with a common base class PR
* Due to the above changes, adding a member after the class
definition requires more work than before. As a
consequence a new helper function ``add_member`` has
been added.
-------------------------------------------------------------------
Thu Dec 15 23:21:26 UTC 2022 - Ben Greiner <code@bnavigator.de>