Example #1
0
 def active_start(self):
     _psyco.profiling('p')
Example #2
0
 def do_stop(self):
     _psyco.profiling('.')
Example #3
0
 def do_stop(self):
     _psyco.profiling('.')
     _psyco.statwrite(callback=None)
Example #4
0
 def active_start(self):
     _psyco.profiling('p')
Example #5
0
 def do_start(self):
     _psyco.profiling('n')
Example #6
0
 def do_stop(self):
     _psyco.profiling('.')
     _psyco.statwrite(callback = None)
Example #7
0
 def do_stop(self):
     _psyco.profiling('.')
Example #8
0
 def do_start(self):
     _psyco.profiling('n')
Example #9
0
def stop():
    """Turn off all automatic compilation.  bind() calls remain in effect."""
    _psyco.profiling('.')
Example #10
0
def full():
    """Compile as much as possible.

Typical use is for small scripts performing intensive computations
or string handling."""
    _psyco.profiling('f')