##// END OF EJS Templates
Adds p.break_ for explicit newlines in lib.pretty...
Adds p.break_ for explicit newlines in lib.pretty p.break_() explicitly includes a newline while pretty printing, and maintains indentation. A simple test is included to show this working.

File last commit:

r2460:e8303d57
r11875:a736ad78
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')