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

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