Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'dsf-gdb/org.eclipse.cdt.dsf.gdb/src/org/eclipse/cdt/dsf/mi/service/command/commands/MIGDBSetPythonPrintStack.java')
-rw-r--r--dsf-gdb/org.eclipse.cdt.dsf.gdb/src/org/eclipse/cdt/dsf/mi/service/command/commands/MIGDBSetPythonPrintStack.java23
1 files changed, 11 insertions, 12 deletions
diff --git a/dsf-gdb/org.eclipse.cdt.dsf.gdb/src/org/eclipse/cdt/dsf/mi/service/command/commands/MIGDBSetPythonPrintStack.java b/dsf-gdb/org.eclipse.cdt.dsf.gdb/src/org/eclipse/cdt/dsf/mi/service/command/commands/MIGDBSetPythonPrintStack.java
index 7708787a880..f57faf58fb7 100644
--- a/dsf-gdb/org.eclipse.cdt.dsf.gdb/src/org/eclipse/cdt/dsf/mi/service/command/commands/MIGDBSetPythonPrintStack.java
+++ b/dsf-gdb/org.eclipse.cdt.dsf.gdb/src/org/eclipse/cdt/dsf/mi/service/command/commands/MIGDBSetPythonPrintStack.java
@@ -16,22 +16,21 @@ package org.eclipse.cdt.dsf.mi.service.command.commands;
import org.eclipse.cdt.dsf.debug.service.command.ICommandControlService.ICommandControlDMContext;
/**
- *
+ *
* -gdb-set python print-stack [ none | message | full ]
- *
- * By default, gdb will print only the message component of a Python exception when an error occurs
- * in a Python script. This can be controlled using set python print-stack: if full, then full Python
+ *
+ * By default, gdb will print only the message component of a Python exception when an error occurs
+ * in a Python script. This can be controlled using set python print-stack: if full, then full Python
* stack printing is enabled; if none, then Python stack and message printing is disabled; if message,
* the default, only the message component of the error is printed.
- *
+ *
* Available with GDB 7.4
- *
+ *
* @since 4.1
- *
+ *
*/
-public class MIGDBSetPythonPrintStack extends MIGDBSet
-{
- public MIGDBSetPythonPrintStack(ICommandControlDMContext ctx, String option) {
- super(ctx, new String[] {"python", "print-stack", option}); //$NON-NLS-1$//$NON-NLS-2$
- }
+public class MIGDBSetPythonPrintStack extends MIGDBSet {
+ public MIGDBSetPythonPrintStack(ICommandControlDMContext ctx, String option) {
+ super(ctx, new String[] { "python", "print-stack", option }); //$NON-NLS-1$//$NON-NLS-2$
+ }
} \ No newline at end of file

Back to the top