Added support to SBType for getting template arguments from a SBType:

uint32_t
SBType::GetNumberOfTemplateArguments ();

lldb::SBType
SBType::GetTemplateArgumentType (uint32_t idx);

lldb::TemplateArgumentKind
SBType::GetTemplateArgumentKind (uint32_t idx);

Some lldb::TemplateArgumentKind values don't have a corresponding SBType
that will be returned from SBType::GetTemplateArgumentType(). This will
help our data formatters do their job by being able to find out the
type of template params and do smart things with those.



git-svn-id: https://llvm.org/svn/llvm-project/lldb/trunk@149658 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/source/Interpreter/ScriptInterpreterPython.cpp b/source/Interpreter/ScriptInterpreterPython.cpp
index 15e6661..d2d355c 100644
--- a/source/Interpreter/ScriptInterpreterPython.cpp
+++ b/source/Interpreter/ScriptInterpreterPython.cpp
@@ -326,7 +326,7 @@
     // embedded we don't know we should be feeding input to the embedded 
     // interpreter or to the python sys.stdin. We also don't want to let python
     // play with the real stdin from this process, so we need to close it...
-    run_string.PutCString ("; sys.stdin.close()");
+    //run_string.PutCString ("; sys.stdin.close()");
     run_string.PutCString ("')");
 
     PyRun_SimpleString (run_string.GetData());