Example #1
0
 def execute(self, text):
     """execute arbitrary code (using ``exec``)"""
     execute(text, self.namespace)
Example #2
0
 def execute(self, text):
     execute(text, self.namespace)
Example #3
0
 def exposed_execute(self, text):
     """execute arbitrary code (using ``exec``)"""
     execute(text, self.exposed_namespace)
Example #4
0
 def exposed_execute(self, text):
     """execute arbitrary code (using ``exec``)"""
     execute(text, PublicService.exposed_namespace)
 def exposed_execute(self, text):
     """ Execute code from server. """
     execute(text, self.exposed_namespace)
Example #6
0
 def execute(self, text):
     execute(text, self.namespace)
Example #7
0
 def exposed_execute(self, text):
     """execute arbitrary code (using ``exec``)"""
     execute(text, PublicService.exposed_namespace)
Example #8
0
 def exposed_execute(self, text):
     """ Execute code from server. """
     execute(text, self.exposed_namespace)