proxy.py (13716:950f9a2ffb78) proxy.py (13719:74853963ddcf)
1# Copyright (c) 2018 ARM Limited
2# All rights reserved.
3#
4# The license below extends only to copyright in the software and shall
5# not be construed as granting a license to any other intellectual
6# property including but not limited to intellectual property relating
7# to a hardware implementation of the functionality of the software
8# licensed hereunder. You may use the software subject to the license

--- 33 unchanged lines hidden (view full) ---

42#####################################################################
43#
44# Proxy object support.
45#
46#####################################################################
47
48from __future__ import print_function
49from __future__ import absolute_import
1# Copyright (c) 2018 ARM Limited
2# All rights reserved.
3#
4# The license below extends only to copyright in the software and shall
5# not be construed as granting a license to any other intellectual
6# property including but not limited to intellectual property relating
7# to a hardware implementation of the functionality of the software
8# licensed hereunder. You may use the software subject to the license

--- 33 unchanged lines hidden (view full) ---

42#####################################################################
43#
44# Proxy object support.
45#
46#####################################################################
47
48from __future__ import print_function
49from __future__ import absolute_import
50import six
51if six.PY3:
52 long = int
50
51import copy
52
53
54class BaseProxy(object):
55 def __init__(self, search_self, search_up):
56 self._search_self = search_self
57 self._search_up = search_up

--- 209 unchanged lines hidden ---
53
54import copy
55
56
57class BaseProxy(object):
58 def __init__(self, search_self, search_up):
59 self._search_self = search_self
60 self._search_up = search_up

--- 209 unchanged lines hidden ---