Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 793683
Collapse All | Expand All

(-)/var/tmp/portage/dev-lang/spidermonkey-78.11.0/work/firefox-78.11.0/python/mozbuild/mozbuild/backend/configenvironment.py (-1 / +2 lines)
Lines 9-15 import six Link Here
9
import sys
9
import sys
10
import json
10
import json
11
11
12
from collections import Iterable, OrderedDict
12
from collections import OrderedDict
13
from collections.abc import Iterable
13
from types import ModuleType
14
from types import ModuleType
14
15
15
import mozpack.path as mozpath
16
import mozpack.path as mozpath
(-)/var/tmp/portage/dev-lang/spidermonkey-78.11.0/work/firefox-78.11.0/python/mozbuild/mozbuild/util.py (-1 / +2 lines)
Lines 22-27 import re Link Here
22
import stat
22
import stat
23
import sys
23
import sys
24
import time
24
import time
25
from collections.abc import Sequence
25
from collections import (
26
from collections import (
26
    OrderedDict,
27
    OrderedDict,
27
)
28
)
Lines 782-788 class HierarchicalStringList(object): Link Here
782
        self._strings = StrictOrderingOnAppendList()
783
        self._strings = StrictOrderingOnAppendList()
783
        self._children = {}
784
        self._children = {}
784
785
785
    class StringListAdaptor(collections.Sequence):
786
    class StringListAdaptor(collections.abc.Sequence):
786
        def __init__(self, hsl):
787
        def __init__(self, hsl):
787
            self._hsl = hsl
788
            self._hsl = hsl
788
789
(-)/var/tmp/portage/dev-lang/spidermonkey-78.11.0/work/firefox-78.11.0/python/mozbuild/mozbuild/makeutil.py (-1 / +1 lines)
Lines 7-13 from __future__ import absolute_import, Link Here
7
import os
7
import os
8
import re
8
import re
9
import six
9
import six
10
from collections import Iterable
10
from collections.abc import Iterable
11
11
12
12
13
class Makefile(object):
13
class Makefile(object):
(-)/var/tmp/portage/dev-lang/spidermonkey-78.11.0/work/firefox-78.11.0/testing/mozbase/manifestparser/manifestparser/filters.py (-1 / +2 lines)
Lines 12-18 from __future__ import absolute_import Link Here
12
12
13
import itertools
13
import itertools
14
import os
14
import os
15
from collections import defaultdict, MutableSequence
15
from collections import defaultdict
16
from collections.abc import MutableSequence
16
17
17
import six
18
import six
18
from six import string_types
19
from six import string_types

Return to bug 793683