changeset 231:18bf83a77e0e

woot, sql within by
author catherine@dellzilla
date Mon, 23 Mar 2009 12:07:31 -0400
parents fea183146819
children c8b8477ca549
files cmd2.py
diffstat 1 files changed, 21 insertions(+), 22 deletions(-) [+]
line wrap: on
line diff
--- a/cmd2.py	Mon Mar 23 10:16:59 2009 -0400
+++ b/cmd2.py	Mon Mar 23 12:07:31 2009 -0400
@@ -752,39 +752,38 @@
         'execute a command as if at the OS prompt.'
         os.system(arg)
         
-    def do_py(self, arg):  
+    def _attempt_py_command(self, arg):
+        try:
+            result = eval(arg, self.pystate)
+            print repr(result)
+        except SyntaxError:
+            exec(arg, self.pystate)       
+        return
+        
+    def do_py(self, arg, escape = 'cmd'):  
         '''
         py <command>: Executes a Python command.
         py: Enters interactive Python mode (end with `end py`).
         '''
         if arg.strip():
-            try:
-                result = eval(arg, self.pystate)
-                print repr(result)
-            except SyntaxError:
-                try:
-                    exec(arg, self.pystate)
-                except Exception:
-                    raise
-            except Exception, e:
-                print e        
+            self._attempt_py_command(arg)
         else:
             print 'Now accepting python commands; end with `end py`'
             buffer = [self.pseudo_raw_input('>>> ')]
             while buffer[-1].lower().split()[:2] != ['end','py']:
-                try:
-                    buf = '\n'.join(buffer)
+                if buffer[-1].lower().split()[:1] == [escape]:
+                    self.onecmd(' '.join(buffer[-1].split()[1:]))
+                    buffer = [self.pseudo_raw_input('>>> ')]
+                    continue
+                else:
                     try:
-                        result = eval(buf, self.pystate)
-                        print repr(result)
+                        self._attempt_py_command('\n'.join(buffer))
+                        buffer = [self.pseudo_raw_input('>>> ')]
                     except SyntaxError:
-                        exec(buf, self.pystate)
-                    buffer = [self.pseudo_raw_input('>>> ')]
-                except SyntaxError:
-                    buffer.append(self.pseudo_raw_input('... '))
-                except Exception, e:
-                    print e
-                    buffer = [self.pseudo_raw_input('>>> ')]
+                        buffer.append(self.pseudo_raw_input('... '))
+                    except Exception, e:
+                        print e
+                        buffer = [self.pseudo_raw_input('>>> ')]
 
     def do_history(self, arg):
         """history [arg]: lists past commands issued