15
0

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

- Update to 3.7.0
  *  Fixed garbage collection issue with variable scope objects (issue #301).
  *  Fixed issue where setting a global variable would not be available locally.
  *  A RepeatDict no longer inherits from dict since it does not actually provide 
     that interface in a meaningful way.
  *  Added feature gate enable_comment_interpolation which controls whether 
     expression interpolation is enabled inside HTML comments (default is enabled).
  *  Added support for Python 3.6+ f-strings (issue #294).

OBS-URL: https://build.opensuse.org/request/show/794801
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-Chameleon?expand=0&rev=31
This commit is contained in:
Tomáš Chvátal
2020-04-17 08:11:45 +00:00
committed by Git OBS Bridge
parent e91e1ea7e4
commit 8d2d9e2f2e
4 changed files with 19 additions and 7 deletions

View File

@@ -1,3 +1,15 @@
-------------------------------------------------------------------
Fri Apr 17 08:04:30 UTC 2020 - Marketa Calabkova <mcalabkova@suse.com>
- Update to 3.7.0
* Fixed garbage collection issue with variable scope objects (issue #301).
* Fixed issue where setting a global variable would not be available locally.
* A RepeatDict no longer inherits from dict since it does not actually provide
that interface in a meaningful way.
* Added feature gate enable_comment_interpolation which controls whether
expression interpolation is enabled inside HTML comments (default is enabled).
* Added support for Python 3.6+ f-strings (issue #294).
-------------------------------------------------------------------
Mon Jul 22 09:10:22 UTC 2019 - Tomáš Chvátal <tchvatal@suse.com>