o modify-python-lldb.py:

  Add the rich comparison methods (__eq__, __ne__) to SBType, too.

o lldbtest.py:

  Add debug utility method TestBase.DebugSBType().

o test/python_api/type:

  Add tests for exercising SBType/SBTypeList API, including the SBTarget.FindTypes(type_name)
  API which returns a SBTypeList matching the type_name.


git-svn-id: https://llvm.org/svn/llvm-project/llvdb/trunk@136975 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/scripts/Python/modify-python-lldb.py b/scripts/Python/modify-python-lldb.py
index e716ee6..8a0edd7 100644
--- a/scripts/Python/modify-python-lldb.py
+++ b/scripts/Python/modify-python-lldb.py
@@ -1,5 +1,5 @@
 #
-# modify-lldb-python.py
+# modify-python-lldb.py
 #
 # This script modifies the lldb module (which was automatically generated via
 # running swig) to support iteration and/or equality operations for certain lldb
@@ -189,7 +189,8 @@
 e = { 'SBAddress':    ['GetFileAddress', 'GetModule'],
       'SBBreakpoint': ['GetID'],
       'SBFileSpec':   ['GetFilename', 'GetDirectory'],
-      'SBModule':     ['GetFileSpec', 'GetUUIDString']
+      'SBModule':     ['GetFileSpec', 'GetUUIDString'],
+      'SBType':       ['GetByteSize', 'GetName']
       }
 
 def list_to_frag(list):