<div dir="ltr">AKA: Is Python 2.6 a supported configuration?  I found this `argparse_compat.py` file in tests, and it opens with this:<div><br></div><div><div>"""</div><div>Compatibility module to use the lldb test-suite with Python 2.6.</div><div><br></div><div>Warning: This may be buggy. It has not been extensively tested and should only</div><div>be used when it is impossible to use a newer Python version.</div><div>It is also a special-purpose class for lldb's test-suite.</div><div>"""</div><div><br></div><div>import sys</div><div><br></div><div>if sys.version_info >= (2, 7):</div><div>    raise "This module shouldn't be used when argparse is available (Python >= 2.7)"</div><div>else:</div><div>    print("Using Python 2.6 compatibility layer. Some command line options may not be supported")</div></div><div><br></div><div><br></div></div>