##// END OF EJS Templates
core.completer: Clean up excessive and unused code....
core.completer: Clean up excessive and unused code. - `mark_dirs` is only called from one location and it is more simply expressed as a one-liner using the ternary operator. - `single_dir_expand` is not called from anywhere in IPython.

File last commit:

r2460:e8303d57
r5766:bf4a4f42
Show More
setupegg.py
6 lines | 156 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
execfile('setup.py')