Skip to content

Instantly share code, notes, and snippets.

@yuokada
Created April 8, 2012 15:37
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save yuokada/2338019 to your computer and use it in GitHub Desktop.
Save yuokada/2338019 to your computer and use it in GitHub Desktop.
msgpackrpc and etc
#!/usr/bin/env python2.7
# -*- coding:utf-8 -*-
import msgpackrpc
client= msgpackrpc.Client(msgpackrpc.Address('localhost', 18800))
result = client.call('sum', 3,9)
print result # => 90
result = client.call('sum_list', [ 3,9 ])
print result
test_d = {
1:[1,10,102],
2:[1,10,100],
3:[1,10,105],
4:[1,10,103],
5:[1,11,120],
}
result = client.call('count_dict', test_d)
print result
#http://www.usupi.org/sysad/158.html
set daemon 30
set logfile syslog facility log_daemon
set statefile /var/run/monit.state
set httpd port 2812
allow admin:monit
set alert hogehoge@gmail.com
set mail-format {
from: monit-mba@mail.monit.com
subject: monit alert [$HOST] -- $EVENT
}
set mailserver smtp.gmail.com port 587 username "hogehoge@gmail.com" password "hogehoge_pssswd" using tlsv1
include /etc/monit.d/*.conf
set daemon 120
check system localhost
if loadavg (1min) > 20 then alert
if cpu usage (user) > 70% then alert
if cpu usage (system) > 30% then alert
if memory usage > 75% then alert
check process msgpackrpc with pidfile /tmp/mydaemon.pid
start program = "/path/to/server.py"
stop program = "/bin/kill `cat /tmp/mydaemon.pid`"
if 5 restarts within 5 cycles then timeout
# if failed host <ホスト名> port <ポート番号>
# protocol HTTP request <URLのパス> then restart
# group <プロセスのグループ>
#!/usr/bin/env python2.7
# -*- coding:utf-8 -*-
# % pip-2.7 freeze |grep "msgpack\|daemon"
# daemon==1.0
# msgpack-python==0.1.12
# msgpack-rpc-python==0.2.3
from daemon import DaemonContext
from daemon.pidfile import TimeoutPIDLockFile
import msgpackrpc
class SumServer(object):
"""docstring for SumServer"""
def __init__(self):
super(SumServer, self).__init__()
def sum(self, x, y):
"""docstring for sum"""
x *= 2
y *= 2
return x**2 + y**2
def sum_list(self, li):
"""docstring for sum_list"""
return sum(li)
def count_dict(self, data_container):
"""docstring for count_dict"""
super_id = None
max_point = -1
for k, v in data_container.items():
cur_point = sum(v) + 0
if cur_point > max_point:
max_point = cur_point
super_id = k
return (super_id, data_container[super_id])
if __name__ == '__main__':
dc = DaemonContext(
pidfile = TimeoutPIDLockFile('/tmp/mydaemon.pid'),
stderr=open('fake_err_console.txt', 'w+')
)
with dc:
try:
server = msgpackrpc.Server(SumServer())
server.listen(msgpackrpc.Address('localhost', 18800))
server.start()
except KeyboardInterrupt, e:
print e
% python2.7 -mcProfile -s time client.py
360
12
(5, (1, 11, 120))
66628 function calls (65989 primitive calls) in 0.391 seconds
Ordered by: internal time
ncalls tottime percall cumtime percall filename:lineno(function)
1 0.017 0.017 0.018 0.018 __init__.py:43(<module>)
1191 0.015 0.000 0.022 0.000 posixpath.py:60(join)
302/300 0.014 0.000 0.083 0.000 pkg_resources.py:1686(find_on_path)
447 0.014 0.000 0.020 0.000 text_file.py:161(readline)
103 0.013 0.000 0.013 0.000 {imp.find_module}
783 0.011 0.000 0.011 0.000 {posix.lstat}
110/30 0.009 0.000 0.022 0.001 sre_parse.py:379(_parse)
377 0.008 0.000 0.008 0.000 {posix.stat}
1 0.008 0.008 0.029 0.029 ioloop.py:27(<module>)
1 0.008 0.008 0.031 0.031 sysconfig.py:259(parse_makefile)
36 0.008 0.000 0.008 0.000 {posix.listdir}
9352 0.008 0.000 0.008 0.000 {method 'endswith' of 'str' objects}
3024 0.007 0.000 0.007 0.000 {built-in method match}
119 0.007 0.000 0.049 0.000 posixpath.py:355(realpath)
267 0.007 0.000 0.032 0.000 pkg_resources.py:2068(from_location)
80 0.006 0.000 0.007 0.000 pkg_resources.py:2530(_get_mro)
1 0.006 0.006 0.007 0.007 socket.py:45(<module>)
211/28 0.006 0.000 0.013 0.000 sre_compile.py:32(_compile)
1 0.005 0.005 0.012 0.012 sysconfig.py:224(parse_config_h)
1 0.005 0.005 0.024 0.024 process.py:17(<module>)
267 0.005 0.000 0.019 0.000 pkg_resources.py:2054(__init__)
4831 0.005 0.000 0.005 0.000 {method 'startswith' of 'str' objects}
540 0.005 0.000 0.005 0.000 {built-in method sub}
1 0.005 0.005 0.011 0.011 __init__.py:24(<module>)
2597 0.005 0.000 0.005 0.000 {method 'readline' of 'file' objects}
3936 0.005 0.000 0.005 0.000 {method 'lower' of 'str' objects}
88 0.005 0.000 0.008 0.000 pkg_resources.py:2257(insert_on)
1 0.004 0.004 0.391 0.391 client.py:4(<module>)
983 0.004 0.000 0.005 0.000 sre_parse.py:182(__next)
713 0.004 0.000 0.007 0.000 pkg_resources.py:2098(key)
306/123 0.004 0.000 0.004 0.000 sre_parse.py:140(getwidth)
1 0.004 0.004 0.010 0.010 plistlib.py:51(<module>)
4 0.004 0.001 0.376 0.094 __init__.py:1(<module>)
1 0.004 0.004 0.004 0.004 stack_context.py:67(<module>)
1 0.004 0.004 0.263 0.263 pkg_resources.py:14(<module>)
783 0.003 0.000 0.016 0.000 posixpath.py:130(islink)
176 0.003 0.000 0.009 0.000 pkg_resources.py:506(add)
573 0.003 0.000 0.048 0.000 re.py:229(_compile)
2486 0.003 0.000 0.003 0.000 {isinstance}
123 0.003 0.000 0.005 0.000 posixpath.py:312(normpath)
1 0.003 0.003 0.004 0.004 heapq.py:31(<module>)
1 0.003 0.003 0.003 0.003 {_socket.getaddrinfo}
1 0.002 0.002 0.042 0.042 session.py:1(<module>)
3891 0.002 0.000 0.002 0.000 {method 'append' of 'list' objects}
1 0.002 0.002 0.037 0.037 tcp.py:1(<module>)
862 0.002 0.000 0.003 0.000 sre_parse.py:130(__getitem__)
74 0.002 0.000 0.003 0.000 sre_compile.py:207(_optimize_charset)
10 0.002 0.000 0.002 0.000 {method 'control' of 'select.kqueue' objects}
1 0.002 0.002 0.003 0.003 collections.py:1(<module>)
540 0.002 0.000 0.011 0.000 re.py:144(sub)
267 0.002 0.000 0.003 0.000 genericpath.py:85(_splitext)
103 0.002 0.000 0.055 0.001 pkgutil.py:176(find_module)
369 0.002 0.000 0.003 0.000 pkg_resources.py:2198(__getattr__)
1 0.002 0.002 0.006 0.006 threading.py:1(<module>)
1 0.002 0.002 0.038 0.038 pkg_resources.py:206(_macosx_vers)
1 0.002 0.002 0.002 0.002 __init__.py:2(<module>)
1 0.002 0.002 0.031 0.031 loop.py:1(<module>)
1 0.002 0.002 0.002 0.002 posix.py:17(<module>)
1 0.002 0.002 0.005 0.005 plistlib.py:400(parse)
3571/3460 0.002 0.000 0.002 0.000 {len}
802 0.002 0.000 0.005 0.000 sre_parse.py:201(get)
777 0.002 0.000 0.002 0.000 stat.py:55(S_ISLNK)
295 0.001 0.000 0.009 0.000 genericpath.py:38(isdir)
1 0.001 0.001 0.001 0.001 expat.py:1(<module>)
1 0.001 0.001 0.053 0.053 pkg_resources.py:215(get_build_platform)
1 0.001 0.001 0.028 0.028 netutil.py:17(<module>)
91 0.001 0.000 0.006 0.000 pkg_resources.py:770(add)
544 0.001 0.000 0.001 0.000 {method 'split' of 'str' objects}
1 0.001 0.001 0.003 0.003 util.py:5(<module>)
1 0.001 0.001 0.003 0.003 iostream.py:17(<module>)
32 0.001 0.000 0.072 0.002 pkg_resources.py:428(add_entry)
1 0.001 0.001 0.001 0.001 errors.py:9(<module>)
1429 0.001 0.000 0.011 0.000 pkg_resources.py:1831(_normalize_cached)
964 0.001 0.000 0.001 0.000 {built-in method group}
1318 0.001 0.000 0.001 0.000 {method 'find' of 'str' objects}
1 0.001 0.001 0.017 0.017 platform.py:770(_mac_ver_xml)
88 0.001 0.000 0.080 0.001 pkg_resources.py:2166(activate)
1072 0.001 0.000 0.001 0.000 stat.py:24(S_IFMT)
109 0.001 0.000 0.062 0.001 pkg_resources.py:1743(_handle_ns)
28 0.001 0.000 0.006 0.000 sre_compile.py:361(_compile_info)
99/28 0.001 0.000 0.023 0.001 sre_parse.py:301(_parse_sub)
985 0.001 0.000 0.001 0.000 {method 'get' of 'dict' objects}
1 0.001 0.001 0.048 0.048 util.py:16(get_platform)
1239 0.001 0.000 0.001 0.000 {method 'rstrip' of 'str' objects}
643 0.001 0.000 0.001 0.000 {method 'rfind' of 'str' objects}
265 0.001 0.000 0.006 0.000 pkg_resources.py:1116(safe_version)
494 0.001 0.000 0.001 0.000 {method 'replace' of 'str' objects}
91 0.001 0.000 0.050 0.001 {map}
160 0.001 0.000 0.001 0.000 pkgutil.py:358(get_importer)
74 0.001 0.000 0.004 0.000 sre_compile.py:178(_compile_charset)
88 0.001 0.000 0.047 0.001 pkg_resources.py:1795(fixup_namespace_packages)
1 0.001 0.001 0.001 0.001 bisect.py:1(<module>)
581 0.001 0.000 0.002 0.000 sre_parse.py:195(match)
80 0.001 0.000 0.002 0.000 genericpath.py:15(exists)
97 0.001 0.000 0.007 0.000 pkg_resources.py:2161(_get_metadata)
89 0.001 0.000 0.001 0.000 posixpath.py:118(dirname)
1 0.001 0.001 0.001 0.001 ssl.py:56(<module>)
407 0.001 0.000 0.001 0.000 sre_parse.py:138(append)
269 0.001 0.000 0.008 0.000 pkg_resources.py:1108(safe_name)
88 0.001 0.000 0.001 0.000 {method 'index' of 'list' objects}
191 0.001 0.000 0.001 0.000 {built-in method search}
1 0.001 0.001 0.001 0.001 util.py:9(<module>)
267 0.001 0.000 0.004 0.000 posixpath.py:95(splitext)
295 0.001 0.000 0.001 0.000 stat.py:40(S_ISDIR)
300 0.001 0.000 0.001 0.000 {getattr}
6 0.001 0.000 0.001 0.000 pkg_resources.py:1419(_index)
3 0.001 0.000 0.001 0.000 sre_compile.py:258(_mk_bitmap)
80 0.001 0.000 0.008 0.000 pkg_resources.py:2537(_find_adapter)
98 0.001 0.000 0.002 0.000 pkg_resources.py:1231(_fn)
121 0.001 0.000 0.006 0.000 posixpath.py:341(abspath)
95 0.001 0.000 0.001 0.000 sre_compile.py:354(_simple)
2 0.001 0.000 0.001 0.000 __init__.py:17(<module>)
28 0.001 0.000 0.044 0.002 sre_compile.py:495(compile)
40 0.001 0.000 0.001 0.000 {posix.access}
1 0.001 0.001 0.001 0.001 {method 'connect' of '_socket.socket' objects}
3 0.001 0.000 0.005 0.002 ioloop.py:232(start)
418 0.001 0.000 0.001 0.000 sre_parse.py:126(__len__)
448 0.001 0.000 0.001 0.000 {min}
1 0.001 0.001 0.001 0.001 process.py:9(<module>)
49 0.001 0.000 0.001 0.000 sre_parse.py:225(_class_escape)
240 0.000 0.000 0.001 0.000 posixpath.py:51(isabs)
89 0.000 0.000 0.005 0.000 pkg_resources.py:1172(has_metadata)
211 0.000 0.000 0.000 0.000 sre_parse.py:90(__init__)
28 0.000 0.000 0.024 0.001 sre_parse.py:663(parse)
9 0.000 0.000 0.000 0.000 {open}
1 0.000 0.000 0.001 0.001 base64.py:3(<module>)
1 0.000 0.000 0.001 0.001 spawn.py:7(<module>)
238 0.000 0.000 0.000 0.000 pkg_resources.py:1538(__init__)
1 0.000 0.000 0.042 0.042 client.py:1(<module>)
91 0.000 0.000 0.001 0.000 pkg_resources.py:724(can_add)
479 0.000 0.000 0.000 0.000 {method 'setdefault' of 'dict' objects}
1 0.000 0.000 0.035 0.035 pkg_resources.py:739(scan)
79 0.000 0.000 0.003 0.000 pkg_resources.py:1275(_has)
89 0.000 0.000 0.000 0.000 pkg_resources.py:493(__iter__)
2 0.000 0.000 0.001 0.000 {__import__}
1 0.000 0.000 0.002 0.002 auto.py:24(<module>)
127 0.000 0.000 0.000 0.000 {range}
91 0.000 0.000 0.001 0.000 pkg_resources.py:2318(has_version)
1 0.000 0.000 0.000 0.000 plistlib.py:365(Data)
11 0.000 0.000 0.000 0.000 {method 'read' of 'file' objects}
29 0.000 0.000 0.002 0.000 pkg_resources.py:1805(file_ns_handler)
1 0.000 0.000 0.000 0.000 error.py:1(<module>)
51 0.000 0.000 0.005 0.000 pkg_resources.py:1653(find_distributions)
570 0.000 0.000 0.000 0.000 {method 'strip' of 'str' objects}
74 0.000 0.000 0.000 0.000 sre_parse.py:257(_escape)
1 0.000 0.000 0.000 0.000 __init__.py:1365(LoggerAdapter)
88 0.000 0.000 0.000 0.000 pkg_resources.py:681(_added_new)
216 0.000 0.000 0.000 0.000 {method 'join' of 'str' objects}
88 0.000 0.000 0.080 0.001 pkg_resources.py:2623(<lambda>)
1 0.000 0.000 0.000 0.000 ascii.py:8(<module>)
6 0.000 0.000 0.000 0.000 {posix.getcwd}
1 0.000 0.000 0.000 0.000 {imp.load_module}
1 0.000 0.000 0.002 0.002 {built-in method ParseFile}
1 0.000 0.000 0.081 0.081 pkg_resources.py:673(subscribe)
28 0.000 0.000 0.019 0.001 sre_compile.py:480(_code)
2 0.000 0.000 0.000 0.000 {dir}
143 0.000 0.000 0.000 0.000 pkgutil.py:173(__init__)
60 0.000 0.000 0.000 0.000 sre_parse.py:72(opengroup)
28 0.000 0.000 0.000 0.000 {_sre.compile}
6 0.000 0.000 0.002 0.000 ioloop.py:558(poll)
4 0.000 0.000 0.000 0.000 ioloop.py:544(_control)
30 0.000 0.000 0.000 0.000 pkg_resources.py:1875(_parse_version_parts)
3 0.000 0.000 0.001 0.000 tcp.py:23(on_read)
3 0.000 0.000 0.000 0.000 {method 'send' of '_socket.socket' objects}
1 0.000 0.000 0.000 0.000 contextlib.py:1(<module>)
6 0.000 0.000 0.000 0.000 {method 'recv' of '_socket.socket' objects}
1 0.000 0.000 0.043 0.043 sysconfig.py:369(_init_posix)
16 0.000 0.000 0.009 0.001 pkg_resources.py:1827(normalize_path)
6/5 0.000 0.000 0.016 0.003 pkg_resources.py:1764(declare_namespace)
56 0.000 0.000 0.000 0.000 sre_compile.py:474(isstring)
6 0.000 0.000 0.001 0.000 pkg_resources.py:1887(parse_version)
16 0.000 0.000 0.003 0.000 pkg_resources.py:1659(find_in_zip)
60 0.000 0.000 0.000 0.000 sre_parse.py:83(closegroup)
256 0.000 0.000 0.000 0.000 {chr}
1 0.000 0.000 0.000 0.000 address.py:1(<module>)
1 0.000 0.000 0.000 0.000 server.py:1(<module>)
1 0.000 0.000 0.000 0.000 os.py:35(_get_exports_list)
1 0.000 0.000 0.019 0.019 platform.py:10(<module>)
283 0.000 0.000 0.000 0.000 {ord}
1 0.000 0.000 0.000 0.000 socket.py:179(_socketobject)
2 0.000 0.000 0.000 0.000 {built-in method __new__ of type object at 0x1017aef30}
97 0.000 0.000 0.000 0.000 pkg_resources.py:2117(version)
12 0.000 0.000 0.004 0.000 pkg_resources.py:2205(from_filename)
8 0.000 0.000 0.000 0.000 pkg_resources.py:1253(_setup_prefix)
12 0.000 0.000 0.000 0.000 {fcntl.fcntl}
8 0.000 0.000 0.000 0.000 {method 'close' of 'file' objects}
95 0.000 0.000 0.000 0.000 sre_parse.py:134(__setitem__)
3 0.000 0.000 0.000 0.000 {posix.uname}
4 0.000 0.000 0.001 0.000 iostream.py:261(_handle_events)
148 0.000 0.000 0.000 0.000 {built-in method end}
28 0.000 0.000 0.000 0.000 sre_parse.py:178(__init__)
9 0.000 0.000 0.000 0.000 {method 'update' of 'dict' objects}
6 0.000 0.000 0.000 0.000 iostream.py:352(_read_from_socket)
20/18 0.000 0.000 0.000 0.000 pkg_resources.py:1846(yield_lines)
39 0.000 0.000 0.000 0.000 {method 'items' of 'dict' objects}
8 0.000 0.000 0.000 0.000 pkg_resources.py:1546(__init__)
1 0.000 0.000 0.000 0.000 sysconfig.py:10(<module>)
1 0.000 0.000 0.000 0.000 interface.py:22(<module>)
29 0.000 0.000 0.000 0.000 pkgutil.py:229(__init__)
69 0.000 0.000 0.000 0.000 pkg_resources.py:2533(cls)
1 0.000 0.000 0.000 0.000 future.py:1(<module>)
1 0.000 0.000 0.000 0.000 util.py:1(<module>)
6 0.000 0.000 0.001 0.000 pkg_resources.py:2107(parsed_version)
10 0.000 0.000 0.000 0.000 sre_parse.py:216(isname)
91 0.000 0.000 0.000 0.000 pkg_resources.py:247(compatible_platforms)
14 0.000 0.000 0.000 0.000 stack_context.py:164(wrap)
4 0.000 0.000 0.000 0.000 iostream.py:300(_run_callback)
4 0.000 0.000 0.000 0.000 iostream.py:487(_handle_write)
30 0.000 0.000 0.041 0.001 re.py:188(compile)
12 0.000 0.000 0.000 0.000 plistlib.py:409(handleBeginElement)
8 0.000 0.000 0.001 0.000 socket.py:223(meth)
60 0.000 0.000 0.000 0.000 {method 'remove' of 'list' objects}
6 0.000 0.000 0.000 0.000 {built-in method split}
6 0.000 0.000 0.000 0.000 iostream.py:370(_read_to_buffer)
3 0.000 0.000 0.000 0.000 {method 'write' of 'file' objects}
1 0.000 0.000 0.000 0.000 socket.py:185(__init__)
4 0.000 0.000 0.000 0.000 ioloop.py:376(add_callback)
28 0.000 0.000 0.000 0.000 sre_parse.py:67(__init__)
3 0.000 0.000 0.044 0.015 sysconfig.py:484(get_config_vars)
1 0.000 0.000 0.003 0.003 address.py:26(socket)
94 0.000 0.000 0.000 0.000 {imp.acquire_lock}
1 0.000 0.000 0.045 0.045 pkg_resources.py:414(__init__)
3 0.000 0.000 0.005 0.002 session.py:48(send_request)
3 0.000 0.000 0.000 0.000 iostream.py:204(write)
144 0.000 0.000 0.000 0.000 {built-in method start}
1 0.000 0.000 0.001 0.001 iostream.py:103(connect)
2 0.000 0.000 0.000 0.000 pkg_resources.py:2463(__init__)
1 0.000 0.000 0.000 0.000 abc.py:86(__new__)
94 0.000 0.000 0.000 0.000 {imp.release_lock}
2 0.000 0.000 0.000 0.000 posix.py:52(consume)
39 0.000 0.000 0.000 0.000 {hasattr}
2 0.000 0.000 0.000 0.000 threading.py:180(__init__)
1 0.000 0.000 0.000 0.000 client.py:5(Client)
1 0.000 0.000 0.000 0.000 log.py:1(<module>)
1 0.000 0.000 0.000 0.000 tcp.py:12(__init__)
10 0.000 0.000 0.001 0.000 plistlib.py:433(getData)
1 0.000 0.000 0.035 0.035 pkg_resources.py:534(resolve)
14 0.000 0.000 0.000 0.000 pkg_resources.py:1323(_zipinfo_name)
20 0.000 0.000 0.000 0.000 posixpath.py:110(basename)
10 0.000 0.000 0.001 0.000 {method 'encode' of 'unicode' objects}
12 0.000 0.000 0.001 0.000 plistlib.py:415(handleEndElement)
33 0.000 0.000 0.000 0.000 pyexpat.c:441(CharacterData)
3 0.000 0.000 0.000 0.000 {method 'pack' of 'msgpack._msgpack.Packer' objects}
4 0.000 0.000 0.001 0.000 iostream.py:301(wrapper)
1 0.000 0.000 0.000 0.000 {posix.pipe}
4 0.000 0.000 0.001 0.000 pkg_resources.py:1443(_listdir)
4 0.000 0.000 0.000 0.000 pkg_resources.py:2380(parse_requirements)
10 0.000 0.000 0.000 0.000 pkg_resources.py:1436(_has)
33 0.000 0.000 0.000 0.000 plistlib.py:420(handleData)
2 0.000 0.000 0.000 0.000 iostream.py:547(_add_io_state)
1 0.000 0.000 0.000 0.000 __future__.py:48(<module>)
3 0.000 0.000 0.005 0.002 loop.py:16(start)
1 0.000 0.000 0.000 0.000 ioloop.py:107(__init__)
29 0.000 0.000 0.000 0.000 {method 'pop' of 'list' objects}
117 0.000 0.000 0.000 0.000 sre_compile.py:24(_identityfunction)
9 0.000 0.000 0.000 0.000 iostream.py:689(_merge_prefix)
1 0.000 0.000 0.001 0.001 __init__.py:71(search_function)
1 0.000 0.000 0.000 0.000 collections.py:46(OrderedDict)
1 0.000 0.000 0.000 0.000 threading.py:414(Thread)
1 0.000 0.000 0.000 0.000 pkg_resources.py:2052(Distribution)
1 0.000 0.000 0.000 0.000 {posix.open}
32 0.000 0.000 0.000 0.000 {setattr}
3 0.000 0.000 0.000 0.000 session.py:84(on_response)
3 0.000 0.000 0.000 0.000 iostream.py:395(_read_from_buffer)
1 0.000 0.000 0.000 0.000 iostream.py:79(__init__)
6 0.000 0.000 0.001 0.000 pkg_resources.py:2084(<lambda>)
1 0.000 0.000 0.000 0.000 pkg_resources.py:2587(_initialize)
2 0.000 0.000 0.000 0.000 {posix.fdopen}
1 0.000 0.000 0.000 0.000 {posix.read}
1 0.000 0.000 0.000 0.000 process.py:275(__init__)
1 0.000 0.000 0.004 0.004 tcp.py:98(connect)
5 0.000 0.000 0.001 0.000 pkg_resources.py:1287(_get)
2 0.000 0.000 0.000 0.000 weakref.py:47(__init__)
44 0.000 0.000 0.000 0.000 sre_parse.py:210(isident)
21 0.000 0.000 0.000 0.000 pkg_resources.py:1489(__init__)
4 0.000 0.000 0.000 0.000 pkg_resources.py:44(_declare_state)
3 0.000 0.000 0.001 0.000 iostream.py:334(_handle_read)
1 0.000 0.000 0.000 0.000 threading.py:426(__init__)
3 0.000 0.000 0.001 0.000 tcp.py:20(send_message)
3 0.000 0.000 0.000 0.000 _weakrefset.py:36(__init__)
1 0.000 0.000 0.006 0.006 plistlib.py:68(readPlist)
2 0.000 0.000 0.000 0.000 functools.py:17(update_wrapper)
3 0.000 0.000 0.000 0.000 tcp.py:28(on_message)
1 0.000 0.000 0.000 0.000 text_file.py:78(__init__)
3 0.000 0.000 0.010 0.003 session.py:42(call)
1 0.000 0.000 0.001 0.001 warnings.py:45(filterwarnings)
1 0.000 0.000 0.000 0.000 abc.py:89(<genexpr>)
1 0.000 0.000 0.000 0.000 server.py:56(_Responder)
2 0.000 0.000 0.000 0.000 genericpath.py:26(isfile)
3 0.000 0.000 0.000 0.000 posix.py:46(wake)
2 0.000 0.000 0.000 0.000 ioloop.py:125(<lambda>)
1 0.000 0.000 0.000 0.000 traceback.py:1(<module>)
3 0.000 0.000 0.004 0.001 tcp.py:88(send_message)
6/3 0.000 0.000 0.001 0.000 pkg_resources.py:2090(__cmp__)
5 0.000 0.000 0.001 0.000 pkg_resources.py:1175(get_metadata)
2 0.000 0.000 0.000 0.000 ioloop.py:179(add_handler)
3 0.000 0.000 0.000 0.000 string.py:511(replace)
1 0.000 0.000 0.000 0.000 codecs.py:77(__new__)
18 0.000 0.000 0.000 0.000 {method 'zfill' of 'str' objects}
20 0.000 0.000 0.000 0.000 {_sre.getlower}
16 0.000 0.000 0.000 0.000 {method 'extend' of 'list' objects}
8 0.000 0.000 0.000 0.000 {method 'splitlines' of 'str' objects}
15 0.000 0.000 0.000 0.000 {method 'keys' of 'dict' objects}
4 0.000 0.000 0.000 0.000 posix.py:25(set_close_exec)
1 0.000 0.000 0.000 0.000 process.py:60(Process)
1 0.000 0.000 0.001 0.001 tcp.py:59(connect)
1 0.000 0.000 0.000 0.000 posix.py:34(__init__)
3 0.000 0.000 0.000 0.000 loop.py:24(stop)
5 0.000 0.000 0.000 0.000 stack_context.py:154(__enter__)
1 0.000 0.000 0.000 0.000 os.py:743(urandom)
12 0.000 0.000 0.000 0.000 pyexpat.c:566(StartElement)
3 0.000 0.000 0.005 0.002 future.py:24(get)
1 0.000 0.000 0.000 0.000 ioloop.py:52(IOLoop)
1 0.000 0.000 0.000 0.000 dep_util.py:5(<module>)
3 0.000 0.000 0.000 0.000 ioloop.py:324(stop)
1 0.000 0.000 0.000 0.000 __init__.py:641(Handler)
1 0.000 0.000 0.091 0.091 pkg_resources.py:83(get_supported_platform)
1 0.000 0.000 0.000 0.000 threading.py:742(__init__)
1 0.000 0.000 0.000 0.000 keyword.py:11(<module>)
3 0.000 0.000 0.000 0.000 {method 'feed' of 'msgpack._msgpack.Unpacker' objects}
1 0.000 0.000 0.000 0.000 {posix.putenv}
2 0.000 0.000 0.000 0.000 contextlib.py:54(contextmanager)
3 0.000 0.000 0.000 0.000 future.py:10(__init__)
5 0.000 0.000 0.001 0.000 pkg_resources.py:1180(get_metadata_lines)
1 0.000 0.000 0.000 0.000 ioloop.py:484(_schedule_next)
1 0.000 0.000 0.000 0.000 sysconfig.py:45(_python_build)
1 0.000 0.000 0.000 0.000 pkg_resources.py:411(WorkingSet)
6/3 0.000 0.000 0.000 0.000 {cmp}
3 0.000 0.000 0.000 0.000 ioloop.py:532(register)
1 0.000 0.000 0.000 0.000 session.py:11(Session)
1 0.000 0.000 0.000 0.000 text_file.py:5(<module>)
1 0.000 0.000 0.000 0.000 {pyexpat.ParserCreate}
1 0.000 0.000 0.000 0.000 tcp.py:54(__init__)
1 0.000 0.000 0.001 0.001 client.py:10(__init__)
12 0.000 0.000 0.001 0.000 pyexpat.c:618(EndElement)
3 0.000 0.000 0.000 0.000 iostream.py:526(_consume)
3 0.000 0.000 0.005 0.002 future.py:20(join)
1 0.000 0.000 0.000 0.000 pkg_resources.py:1495(get_metadata)
1 0.000 0.000 0.035 0.035 pkg_resources.py:194(get_provider)
4 0.000 0.000 0.000 0.000 {method 'find_module' of 'zipimport.zipimporter' objects}
1 0.000 0.000 0.000 0.000 pkg_resources.py:2509(parse)
1 0.000 0.000 0.000 0.000 __init__.py:1077(Logger)
1 0.000 0.000 0.000 0.000 address.py:6(Address)
4 0.000 0.000 0.001 0.000 ioloop.py:397(_run_callback)
1 0.000 0.000 0.000 0.000 iostream.py:470(_handle_connect)
1 0.000 0.000 0.000 0.000 pkg_resources.py:862(ResourceManager)
12 0.000 0.000 0.000 0.000 {time.time}
1 0.000 0.000 0.000 0.000 threading.py:178(_Condition)
4 0.000 0.000 0.000 0.000 iostream.py:253(writing)
3 0.000 0.000 0.000 0.000 tcp.py:72(on_response)
1 0.000 0.000 0.000 0.000 pkg_resources.py:1149(NullProvider)
4 0.000 0.000 0.001 0.000 pkg_resources.py:1190(resource_listdir)
5 0.000 0.000 0.000 0.000 plistlib.py:469(end_string)
1 0.000 0.000 0.000 0.000 __init__.py:1092(__init__)
1 0.000 0.000 0.000 0.000 pkg_resources.py:780(best_match)
1 0.000 0.000 0.000 0.000 collections.py:326(Counter)
1 0.000 0.000 0.000 0.000 session.py:24(__init__)
1 0.000 0.000 0.000 0.000 text_file.py:12(TextFile)
1 0.000 0.000 0.000 0.000 atexit.py:6(<module>)
5 0.000 0.000 0.001 0.000 plistlib.py:451(end_key)
1 0.000 0.000 0.091 0.091 pkg_resources.py:698(Environment)
5 0.000 0.000 0.000 0.000 threading.py:58(__init__)
1 0.000 0.000 0.000 0.000 ascii.py:41(getregentry)
1 0.000 0.000 0.000 0.000 {posix.close}
1 0.000 0.000 0.000 0.000 ioloop.py:347(add_timeout)
1 0.000 0.000 0.000 0.000 ssl.py:83(SSLSocket)
5 0.000 0.000 0.000 0.000 {method 'setter' of 'property' objects}
1 0.000 0.000 0.000 0.000 tcp.py:112(on_connect)
2 0.000 0.000 0.000 0.000 {method 'setblocking' of '_socket.socket' objects}
1 0.000 0.000 0.000 0.000 iostream.py:37(IOStream)
1 0.000 0.000 0.035 0.035 pkg_resources.py:701(__init__)
3 0.000 0.000 0.000 0.000 {method 'sort' of 'list' objects}
1 0.000 0.000 0.000 0.000 plistlib.py:393(PlistParser)
1 0.000 0.000 0.000 0.000 pkg_resources.py:1929(EntryPoint)
5 0.000 0.000 0.000 0.000 stack_context.py:158(__exit__)
1 0.000 0.000 0.000 0.000 threading.py:375(set)
1 0.000 0.000 0.000 0.000 tcp.py:11(BaseSocket)
1 0.000 0.000 0.000 0.000 socket.py:235(_fileobject)
3 0.000 0.000 0.000 0.000 future.py:57(set_result)
1 0.000 0.000 0.000 0.000 future.py:4(Future)
1 0.000 0.000 0.000 0.000 {method 'setsockopt' of '_socket.socket' objects}
1 0.000 0.000 0.000 0.000 iostream.py:185(read_until_close)
1 0.000 0.000 0.000 0.000 server.py:10(Server)
1 0.000 0.000 0.000 0.000 plistlib.py:151(DumbXMLWriter)
1 0.000 0.000 0.000 0.000 __init__.py:49(normalize_encoding)
1 0.000 0.000 0.000 0.000 collections.py:20(_recursive_repr)
1 0.000 0.000 0.000 0.000 ioloop.py:522(__init__)
1 0.000 0.000 0.000 0.000 __init__.py:346(Formatter)
7 0.000 0.000 0.000 0.000 iostream.py:537(_maybe_add_error_listener)
6 0.000 0.000 0.000 0.000 plistlib.py:423(addObject)
1 0.000 0.000 0.035 0.035 pkg_resources.py:308(get_distribution)
1 0.000 0.000 0.000 0.000 {built-in method findall}
1 0.000 0.000 0.000 0.000 ioloop.py:540(unregister)
2 0.000 0.000 0.000 0.000 UserDict.py:4(__init__)
2 0.000 0.000 0.000 0.000 posix.py:29(_set_nonblocking)
1 0.000 0.000 0.000 0.000 pkgutil.py:235(load_module)
1 0.000 0.000 0.000 0.000 tcp.py:62(on_connect)
8 0.000 0.000 0.000 0.000 UserDict.py:70(__contains__)
1 0.000 0.000 0.000 0.000 threading.py:365(__init__)
1 0.000 0.000 0.000 0.000 string.py:220(lower)
17 0.000 0.000 0.000 0.000 {max}
17 0.000 0.000 0.000 0.000 posixpath.py:43(normcase)
1 0.000 0.000 0.000 0.000 pkg_resources.py:1272(DefaultProvider)
1 0.000 0.000 0.000 0.000 threading.py:289(notifyAll)
2 0.000 0.000 0.000 0.000 functools.py:39(wraps)
1 0.000 0.000 0.000 0.000 ioloop.py:463(start)
7 0.000 0.000 0.000 0.000 __future__.py:75(__init__)
2 0.000 0.000 0.000 0.000 threading.py:175(Condition)
1 0.000 0.000 0.000 0.000 loop.py:35(attach_periodic_callback)
1 0.000 0.000 0.000 0.000 ioloop.py:520(_KQueue)
1 0.000 0.000 0.000 0.000 threading.py:298(_Semaphore)
1 0.000 0.000 0.000 0.000 __init__.py:872(FileHandler)
5 0.000 0.000 0.000 0.000 {thread.allocate_lock}
1 0.000 0.000 0.000 0.000 sysconfig.py:61(get_python_inc)
9 0.000 0.000 0.000 0.000 {thread.get_ident}
1 0.000 0.000 0.000 0.000 ioloop.py:526(fileno)
1 0.000 0.000 0.000 0.000 sysconfig.py:199(get_config_h_filename)
2 0.000 0.000 0.000 0.000 pkg_resources.py:2389(scan_list)
3 0.000 0.000 0.000 0.000 {next}
1 0.000 0.000 0.000 0.000 __init__.py:569(Filterer)
1 0.000 0.000 0.000 0.000 pkg_resources.py:754(__getitem__)
1 0.000 0.000 0.001 0.001 re.py:169(findall)
1 0.000 0.000 0.000 0.000 netutil.py:35(TCPServer)
1 0.000 0.000 0.000 0.000 text_file.py:124(close)
1 0.000 0.000 0.000 0.000 loop.py:12(__init__)
1 0.000 0.000 0.000 0.000 {method 'getsockopt' of '_socket.socket' objects}
1 0.000 0.000 0.000 0.000 pkg_resources.py:2477(__str__)
3 0.000 0.000 0.000 0.000 future.py:46(set)
1 0.000 0.000 0.000 0.000 {sorted}
1 0.000 0.000 0.000 0.000 pkg_resources.py:1313(ZipProvider)
2 0.000 0.000 0.000 0.000 atexit.py:37(register)
1 0.000 0.000 0.000 0.000 log.py:14(Log)
1 0.000 0.000 0.000 0.000 posix.py:43(fileno)
1 0.000 0.000 0.000 0.000 sysconfig.py:99(get_python_lib)
1 0.000 0.000 0.000 0.000 pkg_resources.py:172(DistributionNotFound)
1 0.000 0.000 0.000 0.000 platform.py:365(_popen)
1 0.000 0.000 0.000 0.000 pkg_resources.py:2462(Requirement)
1 0.000 0.000 0.000 0.000 plistlib.py:444(begin_dict)
8 0.000 0.000 0.000 0.000 pkg_resources.py:1492(has_metadata)
2 0.000 0.000 0.002 0.001 re.py:139(search)
1 0.000 0.000 0.000 0.000 errors.py:50(DistutilsPlatformError)
1 0.000 0.000 0.000 0.000 util.py:144(Finalize)
1 0.000 0.000 0.000 0.000 iostream.py:224(set_close_callback)
1 0.000 0.000 0.000 0.000 loop.py:3(Loop)
4 0.000 0.000 0.000 0.000 sysconfig.py:53(get_python_version)
1 0.000 0.000 0.000 0.000 text_file.py:115(open)
1 0.000 0.000 0.000 0.000 ioloop.py:422(__init__)
1 0.000 0.000 0.000 0.000 sysconfig.py:216(get_makefile_filename)
1 0.000 0.000 0.000 0.000 threading.py:100(__init__)
1 0.000 0.000 0.000 0.000 ioloop.py:416(_Timeout)
3 0.000 0.000 0.000 0.000 session.py:127(_NoSyncIDGenerator)
1 0.000 0.000 0.000 0.000 ioloop.py:536(modify)
1 0.000 0.000 0.000 0.000 errors.py:70(CCompilerError)
1 0.000 0.000 0.000 0.000 __init__.py:1357(__init__)
1 0.000 0.000 0.000 0.000 plistlib.py:448(end_dict)
1 0.000 0.000 0.000 0.000 threading.py:271(notify)
1 0.000 0.000 0.017 0.017 platform.py:791(mac_ver)
6 0.000 0.000 0.000 0.000 ioloop.py:343(running)
2 0.000 0.000 0.000 0.000 pkg_resources.py:452(find)
2 0.000 0.000 0.000 0.000 UserDict.py:58(get)
4 0.000 0.000 0.000 0.000 iostream.py:249(reading)
2 0.000 0.000 0.000 0.000 {method 'acquire' of 'thread.lock' objects}
1 0.000 0.000 0.000 0.000 ioloop.py:492(_EPoll)
1 0.000 0.000 0.000 0.000 {imp.new_module}
6 0.000 0.000 0.000 0.000 {method 'popitem' of 'dict' objects}
1 0.000 0.000 0.035 0.035 pkg_resources.py:657(require)
3 0.000 0.000 0.000 0.000 iostream.py:533(_check_closed)
1 0.000 0.000 0.000 0.000 ioloop.py:184(update_handler)
1 0.000 0.000 0.000 0.000 tcp.py:77(__init__)
1 0.000 0.000 0.000 0.000 os.py:510(getenv)
1 0.000 0.000 0.000 0.000 socket.py:167(_closedsocket)
1 0.000 0.000 0.000 0.000 threading.py:358(Event)
1 0.000 0.000 0.000 0.000 ioloop.py:456(__init__)
1 0.000 0.000 0.000 0.000 tcp.py:53(ClientSocket)
1 0.000 0.000 0.000 0.000 plistlib.py:331(Plist)
1 0.000 0.000 0.000 0.000 plistlib.py:230(PlistWriter)
1 0.000 0.000 0.000 0.000 pkg_resources.py:1297(EmptyProvider)
3 0.000 0.000 0.000 0.000 pkg_resources.py:185(register_loader_type)
1 0.000 0.000 0.000 0.000 pkg_resources.py:1838(_set_parent_ns)
1 0.000 0.000 0.000 0.000 tcp.py:76(ClientTransport)
1 0.000 0.000 0.000 0.000 ioloop.py:449(PeriodicCallback)
6 0.000 0.000 0.000 0.000 {method 'append' of 'collections.deque' objects}
1 0.000 0.000 0.000 0.000 threading.py:98(_RLock)
1 0.000 0.000 0.000 0.000 iostream.py:581(SSLIOStream)
1 0.000 0.000 0.000 0.000 ascii.py:13(Codec)
1 0.000 0.000 0.000 0.000 pkg_resources.py:1500(get_metadata_lines)
1 0.000 0.000 0.000 0.000 __init__.py:979(Manager)
1 0.000 0.000 0.000 0.000 interface.py:28(Waker)
6 0.000 0.000 0.000 0.000 {method 'popleft' of 'collections.deque' objects}
1 0.000 0.000 0.000 0.000 __init__.py:490(BufferingFormatter)
1 0.000 0.000 0.000 0.000 __init__.py:230(LogRecord)
1 0.000 0.000 0.000 0.000 ioloop.py:582(_Select)
4 0.000 0.000 0.000 0.000 {method 'pop' of 'dict' objects}
1 0.000 0.000 0.000 0.000 threading.py:361(_Event)
1 0.000 0.000 0.000 0.000 threading.py:95(RLock)
1 0.000 0.000 0.000 0.000 pkg_resources.py:370(IResourceProvider)
1 0.000 0.000 0.000 0.000 __init__.py:984(__init__)
1 0.000 0.000 0.000 0.000 pkg_resources.py:329(IMetadataProvider)
1 0.000 0.000 0.000 0.000 pkg_resources.py:1477(FileMetadata)
2 0.000 0.000 0.000 0.000 {hash}
1 0.000 0.000 0.000 0.000 __version__.py:1(<module>)
3 0.000 0.000 0.000 0.000 pkg_resources.py:1643(register_finder)
1 0.000 0.000 0.000 0.000 address.py:11(__init__)
1 0.000 0.000 0.000 0.000 tcp.py:165(ServerTransport)
1 0.000 0.000 0.000 0.000 threading.py:711(_Timer)
1 0.000 0.000 0.000 0.000 __future__.py:74(_Feature)
1 0.000 0.000 0.000 0.000 stack_context.py:78(__init__)
1 0.000 0.000 0.000 0.000 __init__.py:805(StreamHandler)
1 0.000 0.000 0.000 0.000 threading.py:220(_is_owned)
1 0.000 0.000 0.000 0.000 __init__.py:390(__init__)
3 0.000 0.000 0.000 0.000 util.py:41(b)
1 0.000 0.000 0.000 0.000 message.py:1(<module>)
1 0.000 0.000 0.000 0.000 plistlib.py:395(__init__)
1 0.000 0.000 0.000 0.000 threading.py:509(_set_ident)
1 0.000 0.000 0.000 0.000 __init__.py:182(_checkLevel)
1 0.000 0.000 0.000 0.000 {method 'insert' of 'list' objects}
1 0.000 0.000 0.000 0.000 tcp.py:139(ServerSocket)
1 0.000 0.000 0.000 0.000 pkg_resources.py:165(ResolutionError)
1 0.000 0.000 0.000 0.000 pkg_resources.py:1246(EggProvider)
1 0.000 0.000 0.000 0.000 contextlib.py:9(GeneratorContextManager)
1 0.000 0.000 0.000 0.000 ascii.py:34(StreamConverter)
1 0.000 0.000 0.000 0.000 contextlib.py:132(closing)
1 0.000 0.000 0.000 0.000 threading.py:740(_MainThread)
1 0.000 0.000 0.000 0.000 posix.py:33(Waker)
1 0.000 0.000 0.000 0.000 __init__.py:1351(RootLogger)
1 0.000 0.000 0.000 0.000 pkg_resources.py:1559(ImpWrapper)
1 0.000 0.000 0.000 0.000 util.py:3(ObjectDict)
1 0.000 0.000 0.000 0.000 threading.py:346(_BoundedSemaphore)
1 0.000 0.000 0.000 0.000 util.py:280(ForkAwareThreadLock)
6 0.000 0.000 0.000 0.000 {globals}
1 0.000 0.000 0.000 0.000 log.py:16(__init__)
1 0.000 0.000 0.000 0.000 pkg_resources.py:1518(PathMetadata)
1 0.000 0.000 0.000 0.000 __init__.py:532(Filter)
1 0.000 0.000 0.000 0.000 stack_context.py:147(NullContext)
4 0.000 0.000 0.000 0.000 {method 'iteritems' of 'dict' objects}
1 0.000 0.000 0.000 0.000 {_heapq.heappush}
1 0.000 0.000 0.000 0.000 threading.py:56(_Verbose)
3 0.000 0.000 0.000 0.000 {method 'fileno' of '_socket.socket' objects}
1 0.000 0.000 0.000 0.000 tcp.py:155(MessagePackServer)
1 0.000 0.000 0.000 0.000 ascii.py:20(IncrementalEncoder)
1 0.000 0.000 0.000 0.000 pkg_resources.py:1543(EggMetadata)
1 0.000 0.000 0.000 0.000 pkg_resources.py:1580(ImpLoader)
1 0.000 0.000 0.000 0.000 {method 'release' of 'thread.lock' objects}
1 0.000 0.000 0.000 0.000 <string>:1(<module>)
1 0.000 0.000 0.000 0.000 __init__.py:574(__init__)
1 0.000 0.000 0.000 0.000 stack_context.py:82(StackContext)
1 0.000 0.000 0.000 0.000 client.py:24(Context)
1 0.000 0.000 0.000 0.000 __init__.py:1649(NullHandler)
1 0.000 0.000 0.000 0.000 __init__.py:9(<module>)
1 0.000 0.000 0.000 0.000 util.py:287(ForkAwareLocal)
1 0.000 0.000 0.000 0.000 process.py:259(AuthenticationString)
1 0.000 0.000 0.000 0.000 pkg_resources.py:175(UnknownExtra)
1 0.000 0.000 0.000 0.000 __init__.py:932(PlaceHolder)
1 0.000 0.000 0.000 0.000 error.py:1(RPCError)
3 0.000 0.000 0.000 0.000 pkg_resources.py:1682(find_nothing)
1 0.000 0.000 0.000 0.000 ascii.py:28(StreamWriter)
1 0.000 0.000 0.000 0.000 plistlib.py:322(Dict)
1 0.000 0.000 0.000 0.000 ascii.py:24(IncrementalDecoder)
1 0.000 0.000 0.000 0.000 plistlib.py:291(_InternalDict)
1 0.000 0.000 0.000 0.000 {issubclass}
1 0.000 0.000 0.000 0.000 pkg_resources.py:866(__init__)
1 0.000 0.000 0.000 0.000 stack_context.py:119(ExceptionStackContext)
2 0.000 0.000 0.000 0.000 {method 'find_module' of 'imp.NullImporter' objects}
1 0.000 0.000 0.000 0.000 error.py:10(NoMethodError)
1 0.000 0.000 0.000 0.000 address.py:23(unpack)
1 0.000 0.000 0.000 0.000 pkg_resources.py:844(ExtractionError)
1 0.000 0.000 0.000 0.000 server.py:71(_NullResponder)
1 0.000 0.000 0.000 0.000 errors.py:76(CompileError)
1 0.000 0.000 0.000 0.000 threading.py:780(_DummyThread)
1 0.000 0.000 0.000 0.000 errors.py:55(DistutilsExecError)
1 0.000 0.000 0.000 0.000 errors.py:38(DistutilsOptionError)
1 0.000 0.000 0.000 0.000 process.py:273(_MainProcess)
1 0.000 0.000 0.000 0.000 errors.py:13(DistutilsError)
1 0.000 0.000 0.000 0.000 __init__.py:8(<module>)
1 0.000 0.000 0.000 0.000 stack_context.py:77(_State)
1 0.000 0.000 0.000 0.000 iostream.py:257(closed)
1 0.000 0.000 0.000 0.000 {method 'fileno' of 'file' objects}
3 0.000 0.000 0.000 0.000 pkg_resources.py:1726(register_namespace_handler)
1 0.000 0.000 0.000 0.000 errors.py:33(DistutilsFileError)
1 0.000 0.000 0.000 0.000 errors.py:46(DistutilsSetupError)
1 0.000 0.000 0.000 0.000 stack_context.py:161(_StackContextWrapper)
1 0.000 0.000 0.000 0.000 __init__.py:76(TimeoutError)
1 0.000 0.000 0.000 0.000 errors.py:87(UnknownFileError)
1 0.000 0.000 0.000 0.000 pkg_resources.py:1305(__init__)
1 0.000 0.000 0.000 0.000 pkgutil.py:249(_reopen)
1 0.000 0.000 0.000 0.000 errors.py:66(DistutilsByteCompileError)
1 0.000 0.000 0.000 0.000 pkg_resources.py:801(obtain)
1 0.000 0.000 0.000 0.000 errors.py:73(PreprocessError)
1 0.000 0.000 0.000 0.000 {method 'translate' of 'str' objects}
1 0.000 0.000 0.000 0.000 pkg_resources.py:169(VersionConflict)
1 0.000 0.000 0.000 0.000 error.py:4(TimeoutError)
1 0.000 0.000 0.000 0.000 error.py:7(TransportError)
1 0.000 0.000 0.000 0.000 errors.py:63(DistutilsTemplateError)
1 0.000 0.000 0.000 0.000 errors.py:59(DistutilsInternalError)
1 0.000 0.000 0.000 0.000 __init__.py:73(BufferTooShort)
1 0.000 0.000 0.000 0.000 pkg_resources.py:2503(__hash__)
1 0.000 0.000 0.000 0.000 errors.py:20(DistutilsClassError)
1 0.000 0.000 0.000 0.000 errors.py:83(LinkError)
1 0.000 0.000 0.000 0.000 threading.py:749(_set_daemon)
1 0.000 0.000 0.000 0.000 errors.py:29(DistutilsArgError)
1 0.000 0.000 0.000 0.000 __init__.py:79(AuthenticationError)
2 0.000 0.000 0.000 0.000 {iter}
1 0.000 0.000 0.000 0.000 errors.py:26(DistutilsGetoptError)
1 0.000 0.000 0.000 0.000 ascii.py:31(StreamReader)
1 0.000 0.000 0.000 0.000 threading.py:63(_note)
1 0.000 0.000 0.000 0.000 errors.py:79(LibError)
1 0.000 0.000 0.000 0.000 __init__.py:70(ProcessError)
1 0.000 0.000 0.000 0.000 errors.py:16(DistutilsModuleError)
1 0.000 0.000 0.000 0.000 {method 'fileno' of 'select.kqueue' objects}
1 0.000 0.000 0.000 0.000 {method 'disable' of '_lsprof.Profiler' objects}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment