Distutils script: supporting future and docstrings.
Fixes #102 Distutils scripts can contain quite a lot of code. Up till now, only a encoding hint was detected and placed at the top above our 'import sys' and 'sys.path=' stuff. Now we look for the first non-__future__ import line and place our sys.path statement above that line. This makes sure the encoding hint, the module docstring and the future imports are all above our code, as should be. There might be corner cases, but at least this fixes a couple of common problems.
Showing
Please register or sign in to comment