##// END OF EJS Templates
Replaced shlex_split with arg_split from _process_common....
Replaced shlex_split with arg_split from _process_common. shlex_split was removed since it was a unicode unsafe version of arg_split. Tests were added to test magic_run_completer.

File last commit:

r2460:e8303d57
r5688:aac154d6
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')