##// END OF EJS Templates
add 4-space soft-tabs to qtconsole...
add 4-space soft-tabs to qtconsole pressing tab inserts four spaces, so there should never be any '\t' characters inserted by typing. closes gh-900 closes gh-513

File last commit:

r4924:113dc5b1
r5148:33cfae80
Show More
setup.py
11 lines | 200 B | text/x-python | PythonLexer
#!/usr/bin/env python
"""This calls the setup routine for Python 2 or 3 as required."""
import sys
if sys.version_info[0] >= 3:
from setup3 import main
else:
from setup2 import main
main()