changeset b16f02bdb345 in tryton:default
details: https://hg.tryton.org/tryton?cmd=changeset;node=b16f02bdb345
description:
Unify PYSON string format between all clients
issue9723
review328481002
diffstat:
CHANGELOG | 2 ++
tryton/pyson.py | 2 ++
2 files changed, 4 insertions(+), 0 deletions(-)
diffs (19 lines):
diff -r 5dcbb1b9548e -r b16f02bdb345 CHANGELOG
--- a/CHANGELOG Wed Nov 11 20:31:17 2020 +0100
+++ b/CHANGELOG Sun Nov 15 18:50:47 2020 +0100
@@ -1,3 +1,5 @@
+* Unify PYSON string format
+
Version 5.8.0 - 2020-11-02
* Bug fixes (see mercurial logs for details)
* Remove support for Python 3.5
diff -r 5dcbb1b9548e -r b16f02bdb345 tryton/pyson.py
--- a/tryton/pyson.py Wed Nov 11 20:31:17 2020 +0100
+++ b/tryton/pyson.py Sun Nov 15 18:50:47 2020 +0100
@@ -747,4 +747,6 @@
'DateTime': DateTime,
'TimeDelta': TimeDelta,
'Len': Len,
+ 'true': True,
+ 'false': False,
}