$OpenBSD: patch-setup_install_py,v 1.3 2014/03/19 02:15:46 sthen Exp $

don't allow an updated patch to change the python shebang lines,
they're correct with "env" here (handled in infrastructure).

--- setup/install.py.orig	Fri Mar 14 04:21:05 2014
+++ setup/install.py	Wed Mar 19 00:33:16 2014
@@ -243,7 +243,7 @@ class Install(Develop):
             reldir = os.path.relpath(x[0], self.SRC)
             destdir = os.path.join(dest, reldir)
             for f in x[-1]:
-                if os.path.splitext(f)[1] in ('.py', '.so'):
+                if os.path.splitext(f)[1] in ('.py', '.pyc', '.so'):
                     if not os.path.exists(destdir):
                         os.makedirs(destdir)
                     shutil.copy2(self.j(x[0], f), destdir)
