/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to breezy/lsprof.py

Support user.signingkey configuration variable in .git/config.

Merged from https://code.launchpad.net/~jelmer/brz/local-git-key/+merge/381000

Show diffs side-by-side

added added

removed removed

Lines of Context:
3
3
# I made one modification to profile so that it returns a pair
4
4
# instead of just the Stats object
5
5
 
 
6
from __future__ import absolute_import
 
7
 
6
8
import codecs
7
9
try:
8
10
    import cPickle as pickle
11
13
import operator
12
14
import os
13
15
import sys
14
 
import _thread
 
16
try:
 
17
    import _thread
 
18
except ImportError:
 
19
    import thread as _thread
15
20
import threading
16
21
from _lsprof import Profiler, profiler_entry
17
22