If one is going to mark scripts executable, one had best add a shebang line...

This commit is contained in:
Nick Coghlan 2011-12-15 21:13:03 +10:00
parent 9c4193acd0
commit c1d261921b
2 changed files with 2 additions and 0 deletions

View file

@ -1,3 +1,4 @@
#!/usr/bin/env python
from distutils.core import setup
setup(

View file

@ -1,3 +1,4 @@
#!/usr/bin/env python
"""Unit tests for contextlib.py, and other context managers."""
import sys