~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/lp/services/testing/profiled.py

  • Committer: William Grant
  • Date: 2012-01-01 03:00:09 UTC
  • mto: This revision was merged to the branch mainline in revision 14614.
  • Revision ID: william.grant@canonical.com-20120101030009-c3mjxqrydequboe8
RerunĀ overĀ lib/lp

Show diffs side-by-side

added added

removed removed

Lines of Context:
7
7
__all__ = ['profiled', 'setup_profiling']
8
8
 
9
9
import atexit
 
10
import cPickle as pickle
10
11
import os
11
12
import tempfile
12
13
import time
13
14
 
14
 
import cPickle as pickle
15
 
 
16
15
 
17
16
_profile_stats_filename = os.environ.get('lp_layer_profile_filename', None)
18
17
_profiling_setup_time = None