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

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