tryton 7.2.17__py3-none-any.whl → 7.2.18__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of tryton might be problematic. Click here for more details.

Files changed (37) hide show
  1. tryton/__init__.py +1 -1
  2. tryton/common/domain_parser.py +8 -6
  3. tryton/data/locale/bg/LC_MESSAGES/tryton.mo +0 -0
  4. tryton/data/locale/ca/LC_MESSAGES/tryton.mo +0 -0
  5. tryton/data/locale/cs/LC_MESSAGES/tryton.mo +0 -0
  6. tryton/data/locale/de/LC_MESSAGES/tryton.mo +0 -0
  7. tryton/data/locale/es/LC_MESSAGES/tryton.mo +0 -0
  8. tryton/data/locale/es_419/LC_MESSAGES/tryton.mo +0 -0
  9. tryton/data/locale/et/LC_MESSAGES/tryton.mo +0 -0
  10. tryton/data/locale/fa/LC_MESSAGES/tryton.mo +0 -0
  11. tryton/data/locale/fi/LC_MESSAGES/tryton.mo +0 -0
  12. tryton/data/locale/fr/LC_MESSAGES/tryton.mo +0 -0
  13. tryton/data/locale/hu/LC_MESSAGES/tryton.mo +0 -0
  14. tryton/data/locale/id/LC_MESSAGES/tryton.mo +0 -0
  15. tryton/data/locale/it/LC_MESSAGES/tryton.mo +0 -0
  16. tryton/data/locale/ja_JP/LC_MESSAGES/tryton.mo +0 -0
  17. tryton/data/locale/lo/LC_MESSAGES/tryton.mo +0 -0
  18. tryton/data/locale/lt/LC_MESSAGES/tryton.mo +0 -0
  19. tryton/data/locale/nl/LC_MESSAGES/tryton.mo +0 -0
  20. tryton/data/locale/pl/LC_MESSAGES/tryton.mo +0 -0
  21. tryton/data/locale/pt/LC_MESSAGES/tryton.mo +0 -0
  22. tryton/data/locale/ro/LC_MESSAGES/tryton.mo +0 -0
  23. tryton/data/locale/ru/LC_MESSAGES/tryton.mo +0 -0
  24. tryton/data/locale/sl/LC_MESSAGES/tryton.mo +0 -0
  25. tryton/data/locale/tr/LC_MESSAGES/tryton.mo +0 -0
  26. tryton/data/locale/uk/LC_MESSAGES/tryton.mo +0 -0
  27. tryton/data/locale/zh_CN/LC_MESSAGES/tryton.mo +0 -0
  28. tryton/gui/window/view_form/model/field.py +5 -1
  29. tryton/gui/window/view_form/screen/screen.py +0 -2
  30. tryton/gui/window/view_form/view/list.py +4 -1
  31. tryton/gui/window/view_form/view/list_gtk/generictreemodel.py +426 -0
  32. {tryton-7.2.17.dist-info → tryton-7.2.18.dist-info}/METADATA +2 -2
  33. {tryton-7.2.17.dist-info → tryton-7.2.18.dist-info}/RECORD +37 -36
  34. {tryton-7.2.17.data → tryton-7.2.18.data}/scripts/tryton +0 -0
  35. {tryton-7.2.17.dist-info → tryton-7.2.18.dist-info}/WHEEL +0 -0
  36. {tryton-7.2.17.dist-info → tryton-7.2.18.dist-info}/licenses/LICENSE +0 -0
  37. {tryton-7.2.17.dist-info → tryton-7.2.18.dist-info}/top_level.txt +0 -0
tryton/__init__.py CHANGED
@@ -1,6 +1,6 @@
1
1
  # This file is part of Tryton. The COPYRIGHT file at the top level of
2
2
  # this repository contains the full copyright notices and license terms.
3
- __version__ = "7.2.17"
3
+ __version__ = "7.2.18"
4
4
  import locale
5
5
 
6
6
  import gi
@@ -5,6 +5,7 @@ import decimal
5
5
  import gettext
6
6
  import io
7
7
  import locale
8
+ import math
8
9
  from collections import OrderedDict
9
10
  from decimal import Decimal
10
11
  from shlex import shlex
@@ -336,17 +337,18 @@ def format_value(field, value, target=None, context=None, _quote_empty=False):
336
337
  or isinstance(value, bool))):
337
338
  return ''
338
339
  digit = 0
339
- if isinstance(value, Decimal):
340
- cast = Decimal
341
- else:
342
- cast = float
343
- factor = cast(field.get('factor', 1))
344
- string_ = str(value * factor)
340
+ string_ = str(value)
345
341
  if 'e' in string_:
346
342
  string_, exp = string_.split('e')
347
343
  digit -= int(exp)
348
344
  if '.' in string_:
349
345
  digit += len(string_.rstrip('0').split('.')[1])
346
+ if isinstance(value, Decimal):
347
+ cast = Decimal
348
+ else:
349
+ cast = float
350
+ factor = cast(field.get('factor', 1))
351
+ digit -= round(math.log10(factor))
350
352
  return locale.localize(
351
353
  '{0:.{1}f}'.format(value * factor or 0, digit), True)
352
354
 
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
@@ -855,6 +855,7 @@ class O2MField(Field):
855
855
  force_remove=False)
856
856
 
857
857
  if value and (value.get('add') or value.get('update', [])):
858
+ vals_to_set = {}
858
859
  # First set already added fields to prevent triggering a
859
860
  # second on_change call
860
861
  for vals in value.get('update', []):
@@ -882,7 +883,10 @@ class O2MField(Field):
882
883
  continue
883
884
  record2 = group.get(vals['id'])
884
885
  if record2 is not None:
885
- record2.set_on_change(vals)
886
+ to_set = {
887
+ k: v for k, v in vals.items
888
+ if k not in vals_to_set}
889
+ record2.set_on_change(to_set)
886
890
 
887
891
  def validation_domains(self, record, pre_validate=None):
888
892
  screen_domain, attr_domain = self.domains_get(record, pre_validate)
@@ -485,8 +485,6 @@ class Screen:
485
485
  return self.__current_record
486
486
 
487
487
  def __set_current_record(self, record):
488
- if self.__current_record == record and record:
489
- return
490
488
  self.__current_record = record
491
489
  if record:
492
490
  try:
@@ -9,7 +9,6 @@ from functools import wraps
9
9
  from io import StringIO
10
10
 
11
11
  from gi.repository import Gdk, GLib, GObject, Gtk
12
- from pygtkcompat.generictreemodel import GenericTreeModel
13
12
 
14
13
  import tryton.common as common
15
14
  from tryton.common import (
@@ -23,6 +22,7 @@ from tryton.pyson import PYSONDecoder
23
22
 
24
23
  from . import View, XMLViewParser
25
24
  from .list_gtk.editabletree import EditableTreeView, TreeView
25
+ from .list_gtk.generictreemodel import GenericTreeModel
26
26
  from .list_gtk.widget import (
27
27
  M2M, M2O, O2M, O2O, URL, Affix, Binary, Boolean, Button, Char, Date, Dict,
28
28
  Float, Image, Int, MultiSelection, ProgressBar, Reference, Selection, Text,
@@ -1073,6 +1073,9 @@ class ViewTree(View):
1073
1073
  records.append(model.get_value(iter_, 0))
1074
1074
  if self.record not in records:
1075
1075
  self.record = records[0]
1076
+ else:
1077
+ # Force record_message
1078
+ self.record = self.record
1076
1079
  else:
1077
1080
  self.record = None
1078
1081
 
@@ -0,0 +1,426 @@
1
+ # -*- Mode: Python; py-indent-offset: 4 -*-
2
+ # generictreemodel - GenericTreeModel implementation for pygtk compatibility.
3
+ # Copyright (C) 2013 Simon Feltman
4
+ #
5
+ # generictreemodel.py: GenericTreeModel implementation for pygtk compatibility
6
+ #
7
+ # This library is free software; you can redistribute it and/or
8
+ # modify it under the terms of the GNU Lesser General Public
9
+ # License as published by the Free Software Foundation; either
10
+ # version 2.1 of the License, or (at your option) any later version.
11
+ #
12
+ # This library is distributed in the hope that it will be useful,
13
+ # but WITHOUT ANY WARRANTY; without even the implied warranty of
14
+ # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15
+ # Lesser General Public License for more details.
16
+ #
17
+ # You should have received a copy of the GNU Lesser General Public
18
+ # License along with this library; if not, see <http://www.gnu.org/licenses/>.
19
+
20
+
21
+ # System
22
+ import sys
23
+ import random
24
+ import collections
25
+ import ctypes
26
+ import platform
27
+ import warnings
28
+
29
+ # GObject
30
+ import gi
31
+ from gi.repository import GObject
32
+ from gi.repository import Gtk
33
+
34
+
35
+ class _CTreeIter(ctypes.Structure):
36
+ _fields_ = [('stamp', ctypes.c_int),
37
+ ('user_data', ctypes.c_void_p),
38
+ ('user_data2', ctypes.c_void_p),
39
+ ('user_data3', ctypes.c_void_p)]
40
+
41
+ @classmethod
42
+ def from_iter(cls, iter):
43
+ offset = sys.getsizeof(object()) # size of PyObject_HEAD
44
+ return ctypes.POINTER(cls).from_address(id(iter) + offset)
45
+
46
+
47
+ if platform.python_implementation() == "PyPy":
48
+ def _get_user_data_as_pyobject(iter):
49
+ raise NotImplementedError("Not yet supported under PyPy")
50
+ else:
51
+ def _get_user_data_as_pyobject(iter):
52
+ citer = _CTreeIter.from_iter(iter)
53
+ return ctypes.cast(citer.contents.user_data, ctypes.py_object).value
54
+
55
+
56
+ def handle_exception(default_return):
57
+ """Returns a function which can act as a decorator for wrapping exceptions and
58
+ returning "default_return" upon an exception being thrown.
59
+
60
+ This is used to wrap Gtk.TreeModel "do_" method implementations so we can return
61
+ a proper value from the override upon an exception occurring with client code
62
+ implemented by the "on_" methods.
63
+ """
64
+ def decorator(func):
65
+ def wrapped_func(*args, **kargs):
66
+ try:
67
+ return func(*args, **kargs)
68
+ except:
69
+ # Use excepthook directly to avoid any printing to the screen
70
+ # if someone installed an except hook.
71
+ sys.excepthook(*sys.exc_info())
72
+ return default_return
73
+ return wrapped_func
74
+ return decorator
75
+
76
+
77
+ class GenericTreeModel(GObject.GObject, Gtk.TreeModel):
78
+ """A base implementation of a Gtk.TreeModel for python.
79
+
80
+ The GenericTreeModel eases implementing the Gtk.TreeModel interface in Python.
81
+ The class can be subclassed to provide a TreeModel implementation which works
82
+ directly with Python objects instead of iterators.
83
+
84
+ All of the on_* methods should be overridden by subclasses to provide the
85
+ underlying implementation a way to access custom model data. For the purposes of
86
+ this API, all custom model data supplied or handed back through the overridable
87
+ API will use the argument names: node, parent, and child in regards to user data
88
+ python objects.
89
+
90
+ The create_tree_iter, set_user_data, invalidate_iters, iter_is_valid methods are
91
+ available to help manage Gtk.TreeIter objects and their Python object references.
92
+
93
+ GenericTreeModel manages a pool of user data nodes that have been used with iters.
94
+ This pool stores a references to user data nodes as a dictionary value with the
95
+ key being the integer id of the data. This id is what the Gtk.TreeIter objects
96
+ use to reference data in the pool.
97
+ References will be removed from the pool when the model is deleted or explicitly
98
+ by using the optional "node" argument to the "row_deleted" method when notifying
99
+ the model of row deletion.
100
+ """
101
+
102
+ leak_references = GObject.Property(default=True, type=bool,
103
+ blurb="If True, strong references to user data attached to iters are "
104
+ "stored in a dictionary pool (default). Otherwise the user data is "
105
+ "stored as a raw pointer to a python object without a reference.")
106
+
107
+ #
108
+ # Methods
109
+ #
110
+ def __init__(self):
111
+ """Initialize. Make sure to call this from derived classes if overridden."""
112
+ warnings.warn("pygtkcompat is deprecated, see https://pygobject.gnome.org for migration instructions", gi.PyGIDeprecationWarning)
113
+ super(GenericTreeModel, self).__init__()
114
+ self.stamp = 0
115
+
116
+ #: Dictionary of (id(user_data): user_data), used when leak-references=False
117
+ self._held_refs = dict()
118
+
119
+ # Set initial stamp
120
+ self.invalidate_iters()
121
+
122
+ def iter_depth_first(self):
123
+ """Depth-first iteration of the entire TreeModel yielding the python nodes."""
124
+ stack = collections.deque([None])
125
+ while stack:
126
+ it = stack.popleft()
127
+ if it is not None:
128
+ yield self.get_user_data(it)
129
+ children = [self.iter_nth_child(it, i) for i in range(self.iter_n_children(it))]
130
+ stack.extendleft(reversed(children))
131
+
132
+ def invalidate_iter(self, iter):
133
+ """Clear user data and its reference from the iter and this model."""
134
+ iter.stamp = 0
135
+ if iter.user_data:
136
+ if iter.user_data in self._held_refs:
137
+ del self._held_refs[iter.user_data]
138
+ iter.user_data = None
139
+
140
+ def invalidate_iters(self):
141
+ """
142
+ This method invalidates all TreeIter objects associated with this custom tree model
143
+ and frees their locally pooled references.
144
+ """
145
+ self.stamp = random.randint(-2147483648, 2147483647)
146
+ self._held_refs.clear()
147
+
148
+ def iter_is_valid(self, iter):
149
+ """
150
+ :Returns:
151
+ True if the gtk.TreeIter specified by iter is valid for the custom tree model.
152
+ """
153
+ return iter.stamp == self.stamp
154
+
155
+ def get_user_data(self, iter):
156
+ """Get the user_data associated with the given TreeIter.
157
+
158
+ GenericTreeModel stores arbitrary Python objects mapped to instances of Gtk.TreeIter.
159
+ This method allows to retrieve the Python object held by the given iterator.
160
+ """
161
+ if self.leak_references:
162
+ return self._held_refs[iter.user_data]
163
+ else:
164
+ return _get_user_data_as_pyobject(iter)
165
+
166
+ def set_user_data(self, iter, user_data):
167
+ """Applies user_data and stamp to the given iter.
168
+
169
+ If the models "leak_references" property is set, a reference to the
170
+ user_data is stored with the model to ensure we don't run into bad
171
+ memory problems with the TreeIter.
172
+ """
173
+ iter.user_data = id(user_data)
174
+
175
+ if user_data is None:
176
+ self.invalidate_iter(iter)
177
+ else:
178
+ iter.stamp = self.stamp
179
+ if self.leak_references:
180
+ self._held_refs[iter.user_data] = user_data
181
+
182
+ def create_tree_iter(self, user_data):
183
+ """Create a Gtk.TreeIter instance with the given user_data specific for this model.
184
+
185
+ Use this method to create Gtk.TreeIter instance instead of directly calling
186
+ Gtk.Treeiter(), this will ensure proper reference managment of wrapped used_data.
187
+ """
188
+ iter = Gtk.TreeIter()
189
+ self.set_user_data(iter, user_data)
190
+ return iter
191
+
192
+ def _create_tree_iter(self, data):
193
+ """Internal creation of a (bool, TreeIter) pair for returning directly
194
+ back to the view interfacing with this model."""
195
+ if data is None:
196
+ return (False, None)
197
+ else:
198
+ it = self.create_tree_iter(data)
199
+ return (True, it)
200
+
201
+ def row_deleted(self, path, node=None):
202
+ """Notify the model a row has been deleted.
203
+
204
+ Use the node parameter to ensure the user_data reference associated
205
+ with the path is properly freed by this model.
206
+
207
+ :Parameters:
208
+ path : Gtk.TreePath
209
+ Path to the row that has been deleted.
210
+ node : object
211
+ Python object used as the node returned from "on_get_iter". This is
212
+ optional but ensures the model will not leak references to this object.
213
+ """
214
+ super(GenericTreeModel, self).row_deleted(path)
215
+ node_id = id(node)
216
+ if node_id in self._held_refs:
217
+ del self._held_refs[node_id]
218
+
219
+ #
220
+ # GtkTreeModel Interface Implementation
221
+ #
222
+ @handle_exception(0)
223
+ def do_get_flags(self):
224
+ """Internal method."""
225
+ return self.on_get_flags()
226
+
227
+ @handle_exception(0)
228
+ def do_get_n_columns(self):
229
+ """Internal method."""
230
+ return self.on_get_n_columns()
231
+
232
+ @handle_exception(GObject.TYPE_INVALID)
233
+ def do_get_column_type(self, index):
234
+ """Internal method."""
235
+ return self.on_get_column_type(index)
236
+
237
+ @handle_exception((False, None))
238
+ def do_get_iter(self, path):
239
+ """Internal method."""
240
+ return self._create_tree_iter(self.on_get_iter(path))
241
+
242
+ @handle_exception(False)
243
+ def do_iter_next(self, iter):
244
+ """Internal method."""
245
+ if iter is None:
246
+ next_data = self.on_iter_next(None)
247
+ else:
248
+ next_data = self.on_iter_next(self.get_user_data(iter))
249
+
250
+ self.set_user_data(iter, next_data)
251
+ return next_data is not None
252
+
253
+ @handle_exception(None)
254
+ def do_get_path(self, iter):
255
+ """Internal method."""
256
+ path = self.on_get_path(self.get_user_data(iter))
257
+ if path is None:
258
+ return None
259
+ else:
260
+ return Gtk.TreePath(path)
261
+
262
+ @handle_exception(None)
263
+ def do_get_value(self, iter, column):
264
+ """Internal method."""
265
+ return self.on_get_value(self.get_user_data(iter), column)
266
+
267
+ @handle_exception((False, None))
268
+ def do_iter_children(self, parent):
269
+ """Internal method."""
270
+ data = self.get_user_data(parent) if parent else None
271
+ return self._create_tree_iter(self.on_iter_children(data))
272
+
273
+ @handle_exception(False)
274
+ def do_iter_has_child(self, parent):
275
+ """Internal method."""
276
+ return self.on_iter_has_child(self.get_user_data(parent))
277
+
278
+ @handle_exception(0)
279
+ def do_iter_n_children(self, iter):
280
+ """Internal method."""
281
+ if iter is None:
282
+ return self.on_iter_n_children(None)
283
+ return self.on_iter_n_children(self.get_user_data(iter))
284
+
285
+ @handle_exception((False, None))
286
+ def do_iter_nth_child(self, parent, n):
287
+ """Internal method."""
288
+ if parent is None:
289
+ data = self.on_iter_nth_child(None, n)
290
+ else:
291
+ data = self.on_iter_nth_child(self.get_user_data(parent), n)
292
+ return self._create_tree_iter(data)
293
+
294
+ @handle_exception((False, None))
295
+ def do_iter_parent(self, child):
296
+ """Internal method."""
297
+ return self._create_tree_iter(self.on_iter_parent(self.get_user_data(child)))
298
+
299
+ @handle_exception(None)
300
+ def do_ref_node(self, iter):
301
+ self.on_ref_node(self.get_user_data(iter))
302
+
303
+ @handle_exception(None)
304
+ def do_unref_node(self, iter):
305
+ self.on_unref_node(self.get_user_data(iter))
306
+
307
+ #
308
+ # Python Subclass Overridables
309
+ #
310
+ def on_get_flags(self):
311
+ """Overridable.
312
+
313
+ :Returns Gtk.TreeModelFlags:
314
+ The flags for this model. See: Gtk.TreeModelFlags
315
+ """
316
+ raise NotImplementedError
317
+
318
+ def on_get_n_columns(self):
319
+ """Overridable.
320
+
321
+ :Returns:
322
+ The number of columns for this model.
323
+ """
324
+ raise NotImplementedError
325
+
326
+ def on_get_column_type(self, index):
327
+ """Overridable.
328
+
329
+ :Returns:
330
+ The column type for the given index.
331
+ """
332
+ raise NotImplementedError
333
+
334
+ def on_get_iter(self, path):
335
+ """Overridable.
336
+
337
+ :Returns:
338
+ A python object (node) for the given TreePath.
339
+ """
340
+ raise NotImplementedError
341
+
342
+ def on_iter_next(self, node):
343
+ """Overridable.
344
+
345
+ :Parameters:
346
+ node : object
347
+ Node at current level.
348
+
349
+ :Returns:
350
+ A python object (node) following the given node at the current level.
351
+ """
352
+ raise NotImplementedError
353
+
354
+ def on_get_path(self, node):
355
+ """Overridable.
356
+
357
+ :Returns:
358
+ A TreePath for the given node.
359
+ """
360
+ raise NotImplementedError
361
+
362
+ def on_get_value(self, node, column):
363
+ """Overridable.
364
+
365
+ :Parameters:
366
+ node : object
367
+ column : int
368
+ Column index to get the value from.
369
+
370
+ :Returns:
371
+ The value of the column for the given node."""
372
+ raise NotImplementedError
373
+
374
+ def on_iter_children(self, parent):
375
+ """Overridable.
376
+
377
+ :Returns:
378
+ The first child of parent or None if parent has no children.
379
+ If parent is None, return the first node of the model.
380
+ """
381
+ raise NotImplementedError
382
+
383
+ def on_iter_has_child(self, node):
384
+ """Overridable.
385
+
386
+ :Returns:
387
+ True if the given node has children.
388
+ """
389
+ raise NotImplementedError
390
+
391
+ def on_iter_n_children(self, node):
392
+ """Overridable.
393
+
394
+ :Returns:
395
+ The number of children for the given node. If node is None,
396
+ return the number of top level nodes.
397
+ """
398
+ raise NotImplementedError
399
+
400
+ def on_iter_nth_child(self, parent, n):
401
+ """Overridable.
402
+
403
+ :Parameters:
404
+ parent : object
405
+ n : int
406
+ Index of child within parent.
407
+
408
+ :Returns:
409
+ The child for the given parent index starting at 0. If parent None,
410
+ return the top level node corresponding to "n".
411
+ If "n" is larger then available nodes, return None.
412
+ """
413
+ raise NotImplementedError
414
+
415
+ def on_iter_parent(self, child):
416
+ """Overridable.
417
+
418
+ :Returns:
419
+ The parent node of child or None if child is a top level node."""
420
+ raise NotImplementedError
421
+
422
+ def on_ref_node(self, node):
423
+ pass
424
+
425
+ def on_unref_node(self, node):
426
+ pass
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: tryton
3
- Version: 7.2.17
3
+ Version: 7.2.18
4
4
  Summary: Tryton desktop client
5
5
  Home-page: http://www.tryton.org/
6
6
  Download-URL: http://downloads.tryton.org/7.2/
@@ -52,7 +52,7 @@ Requires-Python: >=3.8
52
52
  License-File: LICENSE
53
53
  Requires-Dist: pycairo
54
54
  Requires-Dist: python-dateutil
55
- Requires-Dist: PyGObject<3.51,>=3.19
55
+ Requires-Dist: PyGObject>=3.19
56
56
  Provides-Extra: calendar
57
57
  Requires-Dist: GooCalendar>=0.7; extra == "calendar"
58
58
  Provides-Extra: sound
@@ -1,4 +1,4 @@
1
- tryton/__init__.py,sha256=mk2T6iox9FFSON22rrCvwe2KGYczwBWr5IvJoZr0Zb8,1927
1
+ tryton/__init__.py,sha256=Njd8Awtdb4tUNTDoqsz3-Yd8esvc22swP_YpWzcwzMI,1927
2
2
  tryton/bus.py,sha256=GM9nRfPH1vP8X7KnHkLy2eT-KY-Lw37hdHgh-v_wl10,2874
3
3
  tryton/cache.py,sha256=-xIh4ZQgAy_9nVEJ22yXsPwM4oFGI6j-EIlcqRAs6Go,990
4
4
  tryton/client.py,sha256=mSfOU4sj_XJbWpP92sjXhOXh2_SEZFzlEKEQhZxsGcA,3323
@@ -26,7 +26,7 @@ tryton/common/common.py,sha256=1ZSnzvgkmycOxVmGOucRBlx9d0YaagajHxSt_qo2k-o,49313
26
26
  tryton/common/completion.py,sha256=lSFeoi5_B5QChkV1zI954veSAI61MBc9k4ZVITdlCh8,3035
27
27
  tryton/common/datetime_.py,sha256=IoYt30e-vp3hZiAt-X6hWAyQxfc7R_c1b5Y1J2zpsNA,20394
28
28
  tryton/common/domain_inversion.py,sha256=7tsaHPbkOaSFxYTw4KViKGi7u09W2Vt8YpGtvKRANEQ,18464
29
- tryton/common/domain_parser.py,sha256=8WDsH1KwYwPmHHjueXNZRZPjb-y6S-ZUK_EdPHg1hfs,29565
29
+ tryton/common/domain_parser.py,sha256=j0UqLrmlmY5V2crxCwx6BINRByP1pCCB7qY2tFOyIMc,29611
30
30
  tryton/common/entry_position.py,sha256=lKX3T8day_BQmpKRx7isuj-yieBKUqVmthZsfrtsu4M,281
31
31
  tryton/common/environment.py,sha256=ocAWoBXvnsWODut5-kJr6zhM1fhAFcYLLN7qUK_c8Eg,1848
32
32
  tryton/common/focus.py,sha256=8lR6Ej4KXdH9iOPS7sqSpIFa1YOR2OINRbe96jPz-eA,2471
@@ -39,55 +39,55 @@ tryton/common/tempfile.py,sha256=o2O7xw0QF0eBearaJ9TxMuvJQ4VB6kaF0fCNKAGzaZQ,785
39
39
  tryton/common/timedelta.py,sha256=z3EXjKUzssaYHNFhngUIcc2sVaeNUVp4urQjm3JFJUw,3180
40
40
  tryton/common/underline.py,sha256=dZpz7m4s7siS024v_gvJ6kWmYZSkl3XnRrJeY2pWfqA,714
41
41
  tryton/common/widget_style.py,sha256=YiS-FnCZm0Kesdw-vx9gWD7QKXMpasoUzHe-UPX2_e0,335
42
- tryton/data/locale/bg/LC_MESSAGES/tryton.mo,sha256=S0Q3fs9Ee6wWFsM0WTKtkRA_GiIEdUv1Ak3CHWaqNrI,8720
42
+ tryton/data/locale/bg/LC_MESSAGES/tryton.mo,sha256=jSuc2EBUDQkEorKRKRsFJ6bLk_t84EUuTMhqRttjIWk,8720
43
43
  tryton/data/locale/bg/LC_MESSAGES/tryton.po,sha256=qq6il9QoHdIbb1VUbbc98NxrYLBzleSL6e1Jx48ZsVE,22353
44
- tryton/data/locale/ca/LC_MESSAGES/tryton.mo,sha256=-lTH1mzzfkc_-lnApvQZxZNO_fU1A9mfuhhiUpFgmFo,20327
44
+ tryton/data/locale/ca/LC_MESSAGES/tryton.mo,sha256=ztnoP0ZDDvyoRaN24T0WSqiymt8FgzfkV7L3Ef3x7A0,20327
45
45
  tryton/data/locale/ca/LC_MESSAGES/tryton.po,sha256=ZYtY31AzNzz54eTFGZRumDMf6QtUU49WfopZ2ABMwOM,21574
46
- tryton/data/locale/cs/LC_MESSAGES/tryton.mo,sha256=vvWHMR88BOrZHWNC7QiE-6qKK9GPDCfMvyACRuIeIZI,4634
46
+ tryton/data/locale/cs/LC_MESSAGES/tryton.mo,sha256=q39DdQNTgE2X4X4b7HwYCda-YlGannQVWexIlnajiYo,4634
47
47
  tryton/data/locale/cs/LC_MESSAGES/tryton.po,sha256=q9oUTYtPhmM2B3qo9Z88SHs312SFQ27wQ_CHFteFZeo,18675
48
- tryton/data/locale/de/LC_MESSAGES/tryton.mo,sha256=iLbcYum-KiFe6qocXIQgt3ZURQqCi1G6vGdBCLuSFPw,20876
48
+ tryton/data/locale/de/LC_MESSAGES/tryton.mo,sha256=vzHtWs9VclhT1bnkrhvK2--F-p8y6JfKvXJhwmdHXoQ,20876
49
49
  tryton/data/locale/de/LC_MESSAGES/tryton.po,sha256=JYUc5h0KG8C07WNtY-B8edxtAEmMKIen9rNxiTdA6GI,22140
50
- tryton/data/locale/es/LC_MESSAGES/tryton.mo,sha256=dQ_a_dhZ6Z5jslLFr9UznKnt3IubyxOoN9xtU1GI9Uo,20586
50
+ tryton/data/locale/es/LC_MESSAGES/tryton.mo,sha256=WUgC7gOH1Qh1roto-_dVq4Ee_t7ozn2FKxiL7PVCOMg,20586
51
51
  tryton/data/locale/es/LC_MESSAGES/tryton.po,sha256=ieU2hAyeHPEMXso72F9kve3V1LgxDcr9JURwJFQbh3w,22042
52
- tryton/data/locale/es_419/LC_MESSAGES/tryton.mo,sha256=JE-BBDTroSFFTS5ZTgywWvmzLyIpX6rGqftO1LthRxM,7060
52
+ tryton/data/locale/es_419/LC_MESSAGES/tryton.mo,sha256=VDY77FBWyXEFhiRQ_VkwcjSeuw9ROhjD1cvwj93WZng,7060
53
53
  tryton/data/locale/es_419/LC_MESSAGES/tryton.po,sha256=l1QvbBP_WckH1Qw9vstGqbcdBO9Z5s_3dt0ImDhIKFs,16784
54
- tryton/data/locale/et/LC_MESSAGES/tryton.mo,sha256=m29V6loUxnhc8ikQtQ_QIjhb76wox8Wprut-677COQA,13450
54
+ tryton/data/locale/et/LC_MESSAGES/tryton.mo,sha256=xS3piDXU0HuNWS5_R33UrbOUX1R12TGydVaAuZrLyeQ,13450
55
55
  tryton/data/locale/et/LC_MESSAGES/tryton.po,sha256=qeeaOgBaxwyG7POThk9wABDHY40yiqCPH-D3gMbOokM,19370
56
- tryton/data/locale/fa/LC_MESSAGES/tryton.mo,sha256=8_KLXBQFNGVNLDYglMvxYl457z66Rcry928H5rYAW60,16677
56
+ tryton/data/locale/fa/LC_MESSAGES/tryton.mo,sha256=CMnnNvtZa3a1LmJsazzqr0gbJ21tM8ZpcaQY3BHVGrs,16677
57
57
  tryton/data/locale/fa/LC_MESSAGES/tryton.po,sha256=qV7fEqe7uL77K1-2CBvphCbefj25LYL4T2Ng_q9PEbM,23271
58
- tryton/data/locale/fi/LC_MESSAGES/tryton.mo,sha256=efFtzcN4IL6QUSqCY4I0yj5FK_Ms0-byTXzQ1-Owdbg,445
58
+ tryton/data/locale/fi/LC_MESSAGES/tryton.mo,sha256=aEwPGZX9MQ4McUeBuSy_utrpvixoWHgif6UPpMsimaY,445
59
59
  tryton/data/locale/fi/LC_MESSAGES/tryton.po,sha256=BkzvKHfLUGWlfR0s0r0XBrLmKTFVGQhV4RvbjQu1tFo,14424
60
- tryton/data/locale/fr/LC_MESSAGES/tryton.mo,sha256=QPsuHNYGmF7dtqBg6MMDzS3l6me--PRgHS9eXyTco50,21119
60
+ tryton/data/locale/fr/LC_MESSAGES/tryton.mo,sha256=H9mTZ0PXTihcmW5eyvTd68_Ci8v36VfkCKFWBm_Gano,21119
61
61
  tryton/data/locale/fr/LC_MESSAGES/tryton.po,sha256=7d6pXNGIWsulEkTSaQ6036RIGPOCo85yAs3P5QGjG1s,22315
62
- tryton/data/locale/hu/LC_MESSAGES/tryton.mo,sha256=7tGYIBY5a_EOBhGJn4F79OGoJXYGTl2vDwktXZD-9_4,17126
62
+ tryton/data/locale/hu/LC_MESSAGES/tryton.mo,sha256=L2CGkiNZNNRCk4s0L-z3uXST5bximp7hE8DZRM6VL4E,17126
63
63
  tryton/data/locale/hu/LC_MESSAGES/tryton.po,sha256=RK81eKpbRJzRJ3yE9vx2nlpDBwtFxGd_5vcQvcjRBLw,21371
64
- tryton/data/locale/id/LC_MESSAGES/tryton.mo,sha256=8tRjym1F21W1sE2Alh0pUSdgGjRz14jG43E_AFtYoNM,6983
64
+ tryton/data/locale/id/LC_MESSAGES/tryton.mo,sha256=LCbKVbtH26cXDY_ofw7teKkswzdDoFrdAwMYEbIMwnE,6983
65
65
  tryton/data/locale/id/LC_MESSAGES/tryton.po,sha256=NAjfNy1rU74psadAlT2c9_XJlvAjFDJJnR-EgSE9NuQ,16323
66
- tryton/data/locale/it/LC_MESSAGES/tryton.mo,sha256=LT1gopdpSUrsTSJzslp6W5lipNkev0L-FvQQQO2oTlY,15005
66
+ tryton/data/locale/it/LC_MESSAGES/tryton.mo,sha256=aD0abI-fb81agx1S_7Z7dMPt7NkkxejutrM8CQ8w784,15005
67
67
  tryton/data/locale/it/LC_MESSAGES/tryton.po,sha256=4HInaacBQtJ_B7wYtfWopXRgE7me0rGoRkwqBX-5feE,20253
68
- tryton/data/locale/ja_JP/LC_MESSAGES/tryton.mo,sha256=iZBEf5qel-p2Lt5n1y-qNFUgakuzk5Il__0me49cCro,7061
68
+ tryton/data/locale/ja_JP/LC_MESSAGES/tryton.mo,sha256=8sX0ezOJthGtHRNF4Uorr9ws_bDYHgle4TETSZGPV4M,7061
69
69
  tryton/data/locale/ja_JP/LC_MESSAGES/tryton.po,sha256=Ku2Rg_pOo3lzBZMzzSB-fsMMI6PGP-Gk6dF9zd8ktqQ,36736
70
- tryton/data/locale/lo/LC_MESSAGES/tryton.mo,sha256=0ZvhC2V9idFu9TD6_9_MCh0Ae6DB8kVAN4Xm8CbPzK0,18359
70
+ tryton/data/locale/lo/LC_MESSAGES/tryton.mo,sha256=pHeSVfFQeBdU33ROd2vYvmgVfiUWaz2n-qHfNsZs44c,18359
71
71
  tryton/data/locale/lo/LC_MESSAGES/tryton.po,sha256=ferjyzz0m5g9IaY5XADhKX9H1CbgUCJ7hvmiA-p3quM,27885
72
- tryton/data/locale/lt/LC_MESSAGES/tryton.mo,sha256=R98xHpp58V20IMPhW6UEM7Mn4IqToLNJY6zi6RJA0E8,16169
72
+ tryton/data/locale/lt/LC_MESSAGES/tryton.mo,sha256=gp5QRzSg3NhWfYFwLeIZqEhnNtHH0m6cBDVs684IRLc,16169
73
73
  tryton/data/locale/lt/LC_MESSAGES/tryton.po,sha256=4EBCbYWzWE8byLKzM-MBHZX5IpxSPA_pZXIIYa6_EuM,21377
74
- tryton/data/locale/nl/LC_MESSAGES/tryton.mo,sha256=XeyBa7Lvk0Ylgjxa0uPRPmDpzgmjG85tKhA8G7RkmjM,20094
74
+ tryton/data/locale/nl/LC_MESSAGES/tryton.mo,sha256=1yTDaM4M6pd0Swnms_9d7b8MSPqbxaPCAg9kZkBNsYU,20094
75
75
  tryton/data/locale/nl/LC_MESSAGES/tryton.po,sha256=0s3fF6Z-iFA2d0edwXbettt0DXT7ma1t85bIyx9GKcE,21267
76
- tryton/data/locale/pl/LC_MESSAGES/tryton.mo,sha256=fJXDIeCuRBg0LuWrDIOcJNIZMsjNWETOwHD1DhqbIS0,20027
76
+ tryton/data/locale/pl/LC_MESSAGES/tryton.mo,sha256=tBETrUjlPTbuPvW5gJOOy4m_7Z_UCG6BB6w1YP4XCIo,20027
77
77
  tryton/data/locale/pl/LC_MESSAGES/tryton.po,sha256=ZqML4BVEpjW--6em7avT6R3ozhZ6yujU__aCiN9ad5I,21139
78
- tryton/data/locale/pt/LC_MESSAGES/tryton.mo,sha256=TGXrymq4p4uo2Uxj4Kx502JXUO7_hTBDqh_fb11-Nrc,15086
78
+ tryton/data/locale/pt/LC_MESSAGES/tryton.mo,sha256=z9IImgNc2sclNk1A2UZ71cal95HVspxgIuslE5ovs6Y,15086
79
79
  tryton/data/locale/pt/LC_MESSAGES/tryton.po,sha256=h-u2CKqxAH5wwaKVFpn01eGl4PVZh8TUc5XmUol07_Q,20852
80
- tryton/data/locale/ro/LC_MESSAGES/tryton.mo,sha256=IGzlnnwZvBgMBKFJ3IrZ3aAG3l0YpqibvOqq6b7VxvQ,19655
80
+ tryton/data/locale/ro/LC_MESSAGES/tryton.mo,sha256=fLS1ExCfysDnMO_whN1QYR2iMjV3H-z1f8VxY1Rt4bk,19655
81
81
  tryton/data/locale/ro/LC_MESSAGES/tryton.po,sha256=5dBTi5a9Swv_nEE8kDgJLkMAcBecyRGz_0jJvAg_AQI,21203
82
- tryton/data/locale/ru/LC_MESSAGES/tryton.mo,sha256=MV_yMzTF64tOvh4TbfjWPeqG6jOq22NzkBonioNAh20,9949
82
+ tryton/data/locale/ru/LC_MESSAGES/tryton.mo,sha256=pOb4U0QKt3SZlfVOuzCRv1zKk5CB8uftQ61KA85ieK8,9949
83
83
  tryton/data/locale/ru/LC_MESSAGES/tryton.po,sha256=va6tGFexLon4K4jI58PONl0U7M8RSEuVpNHiw9LI010,22823
84
- tryton/data/locale/sl/LC_MESSAGES/tryton.mo,sha256=YfjOYxcweUEwLAuhRm2FWXp8QKBKbTnXcIzwSqTs6fY,18877
84
+ tryton/data/locale/sl/LC_MESSAGES/tryton.mo,sha256=2cYI1XZqkDmfcoXBmX7Mag1mCeVhByCoambzGt7bksQ,18877
85
85
  tryton/data/locale/sl/LC_MESSAGES/tryton.po,sha256=CvpI-6Qeva9QvQimZdp8RtwMHeTxNemVkPce3ciXcNY,20622
86
- tryton/data/locale/tr/LC_MESSAGES/tryton.mo,sha256=zjzHNi8Cq4FiN5nKhMm5Vz5l3AmuBWMYLI7n4tLtZE8,1696
86
+ tryton/data/locale/tr/LC_MESSAGES/tryton.mo,sha256=Wt05bX73osZJLFQyJk0UfjJz-aeLoSYOflfjBxJPygs,1696
87
87
  tryton/data/locale/tr/LC_MESSAGES/tryton.po,sha256=bieLzyuMmBcxKtaPY5aij8aj_0lJ1aGSjycARNdEVwc,14961
88
- tryton/data/locale/uk/LC_MESSAGES/tryton.mo,sha256=x2rhSIQrRcjV4wsHiB-eGCiXbExvDDM0uT2nm0RuPS4,22925
88
+ tryton/data/locale/uk/LC_MESSAGES/tryton.mo,sha256=Fy4Q1Xs-mPOBL-flj1c0XUP5pS4qbCHiEPAceXtGAOE,22925
89
89
  tryton/data/locale/uk/LC_MESSAGES/tryton.po,sha256=6DKNBLF41uca43PF7tIgDZTqCdgjulKlyNAGX2_f4HE,25664
90
- tryton/data/locale/zh_CN/LC_MESSAGES/tryton.mo,sha256=pz5GBpjRUV2y_jJxA2yzLhx50R_NjBdHkdvEmn4r0Vc,18082
90
+ tryton/data/locale/zh_CN/LC_MESSAGES/tryton.mo,sha256=_GEU1WMetBthcagScYpYpoyNmXGyH8YS5uvKDkpbT40,18082
91
91
  tryton/data/locale/zh_CN/LC_MESSAGES/tryton.po,sha256=db_asTst_1FNASDEXSY41maPSK1Um8M_pORhABWjFyo,19854
92
92
  tryton/data/pixmaps/tryton/tryton-add.svg,sha256=qIk1ewmNjSHqD8vRqCv0kT7v6hbHnY0KNU-M1jrxb4s,185
93
93
  tryton/data/pixmaps/tryton/tryton-archive.svg,sha256=9MO4wyp1SyYh3-FuoIrHhKb-9ywyql2bExsnz0XX9x0,382
@@ -186,16 +186,16 @@ tryton/gui/window/view_board/action.py,sha256=9KNVIiL-_KHN_fLe0XLbFp_CrO5hvWCCPn
186
186
  tryton/gui/window/view_board/view_board.py,sha256=fTZyDUImgkq31mlPr7_nt9QfsMT3gzOC5t8fK2XuQNU,1810
187
187
  tryton/gui/window/view_form/__init__.py,sha256=KpO5XlSYKEB3rxVNiloUx1I9xYQr_VEGw-D915kX_Ho,185
188
188
  tryton/gui/window/view_form/model/__init__.py,sha256=-5OdjQ8rEVZvZALCT9wzhMNZf0ryRVaqgbkVmHOqmqE,144
189
- tryton/gui/window/view_form/model/field.py,sha256=k2r2mxDYjIN6utAXBIcO1oS4aE-qITRx07KYDQVH4sw,45651
189
+ tryton/gui/window/view_form/model/field.py,sha256=VbHtPa6teKcjHFY4MWs3XV5hVazwSlAqOjtMo4nDOHo,45814
190
190
  tryton/gui/window/view_form/model/group.py,sha256=Kt67oXkxdmfvikmqXTEZQV4K-VBi7KUeUEkiI1aOGs8,18391
191
191
  tryton/gui/window/view_form/model/record.py,sha256=g7xOzuDuzcE99AP272EuYqhD1n06KyhdoJBeAfNbWss,29157
192
192
  tryton/gui/window/view_form/screen/__init__.py,sha256=ws2wA8SsyQoZDbIjDpQF9-zP-BiLgVQyUSDVq8pvovo,191
193
- tryton/gui/window/view_form/screen/screen.py,sha256=4lFcQ4eqP2J6G5qCJttvYJMkffufuqBDmFqx6wwUKvE,54076
193
+ tryton/gui/window/view_form/screen/screen.py,sha256=4TW5KCWQGCkf3KNMN4Qn-HuRQkQj0-Gr27QPZ7Yq3pU,54002
194
194
  tryton/gui/window/view_form/view/__init__.py,sha256=HtIDfj_3gBdiOJbDfUzRpgYgSRN0GyVkUTIbSUmJL70,4386
195
195
  tryton/gui/window/view_form/view/calendar_.py,sha256=F6yl-xO5AsgsSVZwd4BU2izXaeBdpuGh21KLXftrr9g,6078
196
196
  tryton/gui/window/view_form/view/form.py,sha256=sFDooT9LnPW3FD2C2m1xrqkGnxS1ExYNrGOjv34l4aY,22710
197
197
  tryton/gui/window/view_form/view/graph.py,sha256=ngoMZ77e_waMkvvMblAMzNDK6UG9aL4O-LRLAjBz7q0,6499
198
- tryton/gui/window/view_form/view/list.py,sha256=wy4DdNbD8nkWJNmRSQnGYewAzKrqdfmi7BhXUKo0x08,52855
198
+ tryton/gui/window/view_form/view/list.py,sha256=eVBfHy59R3W5Z1MMH6Hne2_LJz06ZarKTBJobfzOHos,52964
199
199
  tryton/gui/window/view_form/view/list_form.py,sha256=9IsSjpXIoBpT43rwWYxEF8yN2gi58mHZzMfTBhd8SnM,6984
200
200
  tryton/gui/window/view_form/view/screen_container.py,sha256=lWC4DxGGOYfGw6TjuELUUL1KbCek4p65COXk51bt3_k,25812
201
201
  tryton/gui/window/view_form/view/calendar_gtk/__init__.py,sha256=-5OdjQ8rEVZvZALCT9wzhMNZf0ryRVaqgbkVmHOqmqE,144
@@ -234,6 +234,7 @@ tryton/gui/window/view_form/view/graph_gtk/line.py,sha256=H784XziWn-XYDaUYi_PFfe
234
234
  tryton/gui/window/view_form/view/graph_gtk/pie.py,sha256=4WpqqdX4Ft8axhpnDOcWuKdrWpnMbEoWxRQMCq4TAm4,7241
235
235
  tryton/gui/window/view_form/view/list_gtk/__init__.py,sha256=-5OdjQ8rEVZvZALCT9wzhMNZf0ryRVaqgbkVmHOqmqE,144
236
236
  tryton/gui/window/view_form/view/list_gtk/editabletree.py,sha256=fyzglyc1aqY9dN1vFJeJ2fGLYWg3JeoHhnk-mJt7xWc,13835
237
+ tryton/gui/window/view_form/view/list_gtk/generictreemodel.py,sha256=Quy6RNbSLkYwOYvB7SL2gCu5fwE3vIcv0CdU6bTw7EY,14365
237
238
  tryton/gui/window/view_form/view/list_gtk/widget.py,sha256=I5fMI4TOZQWx5LQIrJyvGWrYgqFjeHtgNNVl8_AtdrI,51721
238
239
  tryton/plugins/__init__.py,sha256=BIzasnQxTfBYrc5dh0HUW5OQV8mQ5Qs8XihgquPljBo,1449
239
240
  tryton/plugins/translation/__init__.py,sha256=HcuSMS0KOPfiWZmqo4gUSqBAknirLtmsnU48bw8JWu8,697
@@ -242,9 +243,9 @@ tryton/tests/test_common.py,sha256=NDGLS7TzVX5D6GHLfQtb_Yxp2fIyQd6cBNfhjrHlvVQ,1
242
243
  tryton/tests/test_common_domain_parser.py,sha256=J1f6kjd9ppNckSU_8CkmFoB2QwpmNmA495Rt99xlWBY,43880
243
244
  tryton/tests/test_common_selection.py,sha256=1vvP7qfgCaqBhgADqbcCOI5ChXZghKSr7kzP99CGqtA,649
244
245
  tryton/tests/test_common_timedelta.py,sha256=IHzNvZrEimLDxTWLNk5K8VG4KZYaxxGGOdoOB8VefQw,3538
245
- tryton-7.2.17.data/scripts/tryton,sha256=nVzTlvIjRfxC9ZwrgPATVFOzMxrutjFeAS6CuU0g9Ds,2098
246
- tryton-7.2.17.dist-info/licenses/LICENSE,sha256=jOtLnuWt7d5Hsx6XXB2QxzrSe2sWWh3NgMfFRetluQM,35147
247
- tryton-7.2.17.dist-info/METADATA,sha256=NEFRGFtretgf1-MjdI81wR9Acjt1HDzoEtNdvy89iFg,2857
248
- tryton-7.2.17.dist-info/WHEEL,sha256=CmyFI0kx5cdEMTLiONQRbGQwjIoR1aIYB7eCAQ4KPJ0,91
249
- tryton-7.2.17.dist-info/top_level.txt,sha256=7l30wN15bNakY7BPm2TEO79_XxvmYpkJONTGR_dTTOU,7
250
- tryton-7.2.17.dist-info/RECORD,,
246
+ tryton-7.2.18.data/scripts/tryton,sha256=nVzTlvIjRfxC9ZwrgPATVFOzMxrutjFeAS6CuU0g9Ds,2098
247
+ tryton-7.2.18.dist-info/licenses/LICENSE,sha256=jOtLnuWt7d5Hsx6XXB2QxzrSe2sWWh3NgMfFRetluQM,35147
248
+ tryton-7.2.18.dist-info/METADATA,sha256=Zg4g2CDVyF8UPeFhyD5B2bs17jK0MmPTuHqa4LRI_7w,2851
249
+ tryton-7.2.18.dist-info/WHEEL,sha256=CmyFI0kx5cdEMTLiONQRbGQwjIoR1aIYB7eCAQ4KPJ0,91
250
+ tryton-7.2.18.dist-info/top_level.txt,sha256=7l30wN15bNakY7BPm2TEO79_XxvmYpkJONTGR_dTTOU,7
251
+ tryton-7.2.18.dist-info/RECORD,,