##// END OF EJS Templates
ENH: Add configuration for profiling completions....
ENH: Add configuration for profiling completions. Adds two new configurable attributes to IPCompleter to enable profiling of the completion subsystem. - IPCompleter.profile_completions, a boolean indicating whether we should profile completions. Default is False. - IPCompleter.profiler_output_dir, a string indicating the directory where profiling data should be written. Default is '.completion_profiles'.

File last commit:

r13387:3b4dba0a
r25693:3792cd3d
Show More
setupegg.py
7 lines | 217 B | text/x-python | PythonLexer
#!/usr/bin/env python
"""Wrapper to run setup.py using setuptools."""
# Import setuptools and call the actual setup
import setuptools
with open('setup.py', 'rb') as f:
exec(compile(f.read(), 'setup.py', 'exec'))