summaryrefslogtreecommitdiffstats
path: root/Lib/idlelib/debugobj_r.py
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2016-05-28 21:06:48 (GMT)
committerBenjamin Peterson <benjamin@python.org>2016-05-28 21:06:48 (GMT)
commitf558d5f284d531c058e229452154de5ebe003b1c (patch)
tree44779bfa9fd1ce6caf79d2d187e06eae2d0b5578 /Lib/idlelib/debugobj_r.py
parent6ca426021904b7ec9548b64842eff107b0b8aeb8 (diff)
parent6fa5bdc6e85ec48925bc0d856b134f59d01c300f (diff)
downloadcpython-f558d5f284d531c058e229452154de5ebe003b1c.zip
cpython-f558d5f284d531c058e229452154de5ebe003b1c.tar.gz
cpython-f558d5f284d531c058e229452154de5ebe003b1c.tar.bz2
merge heads
Diffstat (limited to 'Lib/idlelib/debugobj_r.py')
-rw-r--r--Lib/idlelib/debugobj_r.py36
1 files changed, 36 insertions, 0 deletions
diff --git a/Lib/idlelib/debugobj_r.py b/Lib/idlelib/debugobj_r.py
new file mode 100644
index 0000000..8031aae
--- /dev/null
+++ b/Lib/idlelib/debugobj_r.py
@@ -0,0 +1,36 @@
+from idlelib import rpc
+
+def remote_object_tree_item(item):
+ wrapper = WrappedObjectTreeItem(item)
+ oid = id(wrapper)
+ rpc.objecttable[oid] = wrapper
+ return oid
+
+class WrappedObjectTreeItem:
+ # Lives in PYTHON subprocess
+
+ def __init__(self, item):
+ self.__item = item
+
+ def __getattr__(self, name):
+ value = getattr(self.__item, name)
+ return value
+
+ def _GetSubList(self):
+ sub_list = self.__item._GetSubList()
+ return list(map(remote_object_tree_item, sub_list))
+
+class StubObjectTreeItem:
+ # Lives in IDLE process
+
+ def __init__(self, sockio, oid):
+ self.sockio = sockio
+ self.oid = oid
+
+ def __getattr__(self, name):
+ value = rpc.MethodProxy(self.sockio, self.oid, name)
+ return value
+
+ def _GetSubList(self):
+ sub_list = self.sockio.remotecall(self.oid, "_GetSubList", (), {})
+ return [StubObjectTreeItem(self.sockio, oid) for oid in sub_list]