changeset f12017696b77 in modules/stock_package_shipping:default
details:
https://hg.tryton.org/modules/stock_package_shipping?cmd=changeset&node=f12017696b77
description:
Ensure that objects in the Pool has __slots__
issue10719
review375361002
diffstat:
stock.py | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diffs (12 lines):
diff -r 3050a628e43d -r f12017696b77 stock.py
--- a/stock.py Sun Jul 04 17:54:48 2021 +0200
+++ b/stock.py Thu Sep 23 23:12:35 2021 +0200
@@ -175,7 +175,7 @@
class ShippingMixin:
-
+ __slots__ = ()
shipping_description = fields.Char('Shipping Description',
states={
'readonly': Eval('state').in_(['done', 'packed'])