Should Python library modules start with #!/usr/bin/env python?
Looking at first lines of *.py in /usr/share/pyshared (where Python libs are stored in Debian) reveals that there are both files that start with the hashbang line and those that do not.
Is there a reason to include or omit this line?
#!python? – Kos Mar 20 '12 at 8:31/usr/bin/envis used solely for portability. – Mischa Arefiev Mar 20 '12 at 8:35