Salutations, list! When running scripts using the Python bundle, I noticed a complaint from python3 about the use of reload() in sitecustomize.py. Since reload is no longer a built in function in python3, this little one line patch will fix the issue while still supporting python2.<div>
<br></div><div><div>Index: Python.tmbundle/Support/sitecustomize.py</div><div>===================================================================</div><div>--- Python.tmbundle/Support/sitecustomize.py<span class="Apple-tab-span" style="white-space:pre"> </span>(revision 11288)</div>
<div>+++ Python.tmbundle/Support/sitecustomize.py<span class="Apple-tab-span" style="white-space:pre">  </span>(working copy)</div><div>@@ -18,6 +18,7 @@</div><div> # now import local sitecustomize</div><div> try:</div><div>
   import sitecustomize</div><div>+  if sys.version_info[0] >= 3: from imp import reload # python 3 support</div><div>   reload(sitecustomize)</div><div> except ImportError: pass</div><div> </div><div><br></div><div><div>
<div><br></div><div><br></div></div></div></div>