##// END OF EJS Templates
Minor improvements to completion...
Minor improvements to completion If object being completed is a function, append `()` to match the convention used in cpython doc. This include methods. Append `()` only in the _displayed_ menu, does not insert the (). If completion is relatively to long (mostly if is does not come from jedi), and use a fully qualified name with more than 3 parts, ellides the middles one to `…`. (This closes #9835).

File last commit:

r13387:3b4dba0a
r23467:ca19ba90
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'))