summaryrefslogtreecommitdiffstats
path: root/Lib/idlelib/debugobj_r.py
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/idlelib/debugobj_r.py')
-rw-r--r--Lib/idlelib/debugobj_r.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/Lib/idlelib/debugobj_r.py b/Lib/idlelib/debugobj_r.py
index 8031aae..75e75eb 100644
--- a/Lib/idlelib/debugobj_r.py
+++ b/Lib/idlelib/debugobj_r.py
@@ -34,3 +34,8 @@ class StubObjectTreeItem:
def _GetSubList(self):
sub_list = self.sockio.remotecall(self.oid, "_GetSubList", (), {})
return [StubObjectTreeItem(self.sockio, oid) for oid in sub_list]
+
+
+if __name__ == '__main__':
+ from unittest import main
+ main('idlelib.idle_test.test_debugobj_r', verbosity=2)