15
0

Accepting request 852905 from home:mcalabkova:branches:devel:languages:python

- Update to 1.6.0
  * Fix a bug causing cloudpickle to crash when pickling dynamically created, importable modules. (issue #360)
  * cloudpickle's pickle.Pickler subclass (currently defined as cloudpickle.cloudpickle_fast.CloudPickler) can 
    and should now be accessed as cloudpickle.Pickler. This is the only officially supported way of accessing it. (issue #366)
  * cloudpickle now supports pickling dict_keys, dict_items and dict_values. (PR #384)

OBS-URL: https://build.opensuse.org/request/show/852905
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-cloudpickle?expand=0&rev=31
This commit is contained in:
2020-12-04 12:38:26 +00:00
committed by Git OBS Bridge
parent efb864fd90
commit bc4e7e121b
4 changed files with 18 additions and 9 deletions

View File

@@ -1,3 +1,12 @@
-------------------------------------------------------------------
Wed Dec 2 15:00:54 UTC 2020 - Markéta Machová <mmachova@suse.com>
- Update to 1.6.0
* Fix a bug causing cloudpickle to crash when pickling dynamically created, importable modules. (issue #360)
* cloudpickle's pickle.Pickler subclass (currently defined as cloudpickle.cloudpickle_fast.CloudPickler) can
and should now be accessed as cloudpickle.Pickler. This is the only officially supported way of accessing it. (issue #366)
* cloudpickle now supports pickling dict_keys, dict_items and dict_values. (PR #384)
-------------------------------------------------------------------
Fri Jun 26 04:16:58 UTC 2020 - Steve Kowalik <steven.kowalik@suse.com>