blob: 307729962261e0409b0f5cc86e06c3d0aec5fc3e [file] [log] [blame]
garciadeblas9a620072023-04-25 01:14:45 +02001#######################################################################################
2# Copyright ETSI Contributors and Others.
3#
4# Licensed under the Apache License, Version 2.0 (the "License");
5# you may not use this file except in compliance with the License.
6# You may obtain a copy of the License at
7#
8# http://www.apache.org/licenses/LICENSE-2.0
9#
10# Unless required by applicable law or agreed to in writing, software
11# distributed under the License is distributed on an "AS IS" BASIS,
12# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
13# implied.
14# See the License for the specific language governing permissions and
15# limitations under the License.
16#######################################################################################
17
18*** .tox/cover/lib/python3.10/site-packages/pyangbind/lib/yangtypes.py 2023-05-10 06:50:57.876027148 -0400
19--- .tox/cover/lib/python3.10/site-packages/pyangbind/lib/yangtypes.py 2023-05-10 06:51:11.772022417 -0400
20*************** limitations under the License.
21*** 22,27 ****
22--- 22,28 ----
23 from __future__ import unicode_literals
24
25 import collections
26+ from six.moves import collections_abc
27 import copy
28 import uuid
29 from decimal import Decimal
30*************** def TypedListType(*args, **kwargs):
31*** 372,378 ****
32 if not isinstance(allowed_type, list):
33 allowed_type = [allowed_type]
34
35! class TypedList(collections.MutableSequence):
36 _pybind_generated_by = "TypedListType"
37 _list = list()
38
39--- 373,379 ----
40 if not isinstance(allowed_type, list):
41 allowed_type = [allowed_type]
42
43! class TypedList(collections_abc.MutableSequence):
44 _pybind_generated_by = "TypedListType"
45 _list = list()
46