Add needed Clear methods.
<rdar://problem/10596340>


git-svn-id: https://llvm.org/svn/llvm-project/lldb/trunk@146902 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/scripts/Python/interface/SBModule.i b/scripts/Python/interface/SBModule.i
index 01bf470..08e5c18 100644
--- a/scripts/Python/interface/SBModule.i
+++ b/scripts/Python/interface/SBModule.i
@@ -103,6 +103,9 @@
     bool
     IsValid () const;
 
+    void
+    Clear();
+
     %feature("docstring", "
     //------------------------------------------------------------------
     /// Get const accessor for the module file specification.
diff --git a/scripts/Python/interface/SBValue.i b/scripts/Python/interface/SBValue.i
index a1ab884..a9878a2 100644
--- a/scripts/Python/interface/SBValue.i
+++ b/scripts/Python/interface/SBValue.i
@@ -67,6 +67,9 @@
     bool
     IsValid();
     
+    void
+    Clear();
+    
     SBError
     GetError();
 
diff --git a/scripts/Python/interface/SBValueList.i b/scripts/Python/interface/SBValueList.i
index 75c8f6b..afd4891 100644
--- a/scripts/Python/interface/SBValueList.i
+++ b/scripts/Python/interface/SBValueList.i
@@ -78,6 +78,9 @@
 
     bool
     IsValid() const;
+    
+    void 
+    Clear();
 
     void
     Append (const lldb::SBValue &val_obj);