[Lldb-commits] [lldb] r258751 - Fix TestSyntheticCapping for Python 3.

Zachary Turner via lldb-commits lldb-commits at lists.llvm.org
Mon Jan 25 16:07:10 PST 2016


Author: zturner
Date: Mon Jan 25 18:07:09 2016
New Revision: 258751

URL: http://llvm.org/viewvc/llvm-project?rev=258751&view=rev
Log:
Fix TestSyntheticCapping for Python 3.

In Python 3, whitespace inconsistences are errors.  This synthetic
provider had mixed tabs and spaces, as well as inconsistent
indentation widths.  This led to the file not being imported,
and naturally the test failing.  No functional change here, just
whitespace.

Modified:
    lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/synthcapping/fooSynthProvider.py

Modified: lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/synthcapping/fooSynthProvider.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/synthcapping/fooSynthProvider.py?rev=258751&r1=258750&r2=258751&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/synthcapping/fooSynthProvider.py (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/functionalities/data-formatter/synthcapping/fooSynthProvider.py Mon Jan 25 18:07:09 2016
@@ -1,21 +1,21 @@
 import lldb
 class fooSynthProvider:
-     def __init__(self, valobj, dict):
-         self.valobj = valobj;
-         self.int_type = valobj.GetType().GetBasicType(lldb.eBasicTypeInt)
-     def num_children(self):
-         return 3;
-     def get_child_at_index(self, index):
-         if index == 0:
-             child = self.valobj.GetChildMemberWithName('a');
-         if index == 1:
-             child = self.valobj.CreateChildAtOffset ('fake_a', 1, self.int_type);
-         if index == 2:
-             child = self.valobj.GetChildMemberWithName('r');
-         return child;
-     def get_child_index(self, name):
-         if name == 'a':
-             return 0;
-         if name == 'fake_a':
-             return 1;
-    	 return 2;
+    def __init__(self, valobj, dict):
+        self.valobj = valobj;
+        self.int_type = valobj.GetType().GetBasicType(lldb.eBasicTypeInt)
+    def num_children(self):
+        return 3;
+    def get_child_at_index(self, index):
+        if index == 0:
+            child = self.valobj.GetChildMemberWithName('a');
+        if index == 1:
+            child = self.valobj.CreateChildAtOffset ('fake_a', 1, self.int_type);
+        if index == 2:
+            child = self.valobj.GetChildMemberWithName('r');
+        return child;
+    def get_child_index(self, name):
+        if name == 'a':
+            return 0;
+        if name == 'fake_a':
+            return 1;
+        return 2;




More information about the lldb-commits mailing list