15
0

- update to 1.15.6:

* Fixed issue with legacy python 2.7 and 3.5.
  * Python 3.13 is now supported.
  * Fixed `SyntaxError: invalid syntax` happening when the
    default value of one argument of the created function is a
  * subclass of a basic primitive.
    `_` or contains a double `__`
- Update to Version 1.13.0

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-makefun?expand=0&rev=14
This commit is contained in:
2024-10-29 21:11:40 +00:00
committed by Git OBS Bridge
parent 6fe7bfd92b
commit 5420741f3f
4 changed files with 23 additions and 11 deletions

View File

@@ -1,3 +1,13 @@
-------------------------------------------------------------------
Tue Oct 29 21:11:12 UTC 2024 - Dirk Müller <dmueller@suse.com>
- update to 1.15.6:
* Fixed issue with legacy python 2.7 and 3.5.
* Python 3.13 is now supported.
* Fixed `SyntaxError: invalid syntax` happening when the
default value of one argument of the created function is a
* subclass of a basic primitive.
-------------------------------------------------------------------
Thu Dec 7 22:55:39 UTC 2023 - Dirk Müller <dmueller@suse.com>
@@ -17,7 +27,7 @@ Sun Mar 26 18:45:31 UTC 2023 - Dirk Müller <dmueller@suse.com>
- update to 1.15.1:
* Fixed `ValueError: Invalid co_name` happening on python 2
when the name of a function to create starts or ends with
`_` or contains a double `__`
`_` or contains a double `__`
-------------------------------------------------------------------
Fri Dec 2 20:29:56 UTC 2022 - Yogalakshmi Arunachalam <yarunachalam@suse.com>
@@ -43,7 +53,7 @@ Thu Sep 29 15:46:07 UTC 2022 - Yogalakshmi Arunachalam <yarunachalam@suse.com>
- Fixed regression with generators in python 3.5
- Fixed an issue where using partial on a generator function in python 3.5 was raising a SyntaxError. Fixed #79
- Update to Version 1.13.0
- Update to Version 1.13.0
- Support for async generator functions
async generator functions are now supported (See PEP525). Fixed #77. PR#78 by broglep-work.