[pypy-svn] r72143 - in pypy/trunk/lib-python/2.5.2: . bsddb

getxsick at codespeak.net getxsick at codespeak.net
Thu Mar 11 22:45:16 CET 2010


Author: getxsick
Date: Thu Mar 11 22:45:14 2010
New Revision: 72143

Modified:
   pypy/trunk/lib-python/2.5.2/bsddb/dbshelve.py
   pypy/trunk/lib-python/2.5.2/cgi.py
Log:
Fix shebangs


Modified: pypy/trunk/lib-python/2.5.2/bsddb/dbshelve.py
==============================================================================
--- pypy/trunk/lib-python/2.5.2/bsddb/dbshelve.py	(original)
+++ pypy/trunk/lib-python/2.5.2/bsddb/dbshelve.py	Thu Mar 11 22:45:14 2010
@@ -1,4 +1,4 @@
-#!/bin/env python
+#!/usr/bin/env python
 #------------------------------------------------------------------------
 #           Copyright (c) 1997-2001 by Total Control Software
 #                         All Rights Reserved

Modified: pypy/trunk/lib-python/2.5.2/cgi.py
==============================================================================
--- pypy/trunk/lib-python/2.5.2/cgi.py	(original)
+++ pypy/trunk/lib-python/2.5.2/cgi.py	Thu Mar 11 22:45:14 2010
@@ -1,4 +1,4 @@
-#! /usr/local/bin/python
+#!/usr/bin/env python
 
 # NOTE: the above "/usr/local/bin/python" is NOT a mistake.  It is
 # intentionally NOT "/usr/bin/env python".  On many systems



More information about the Pypy-commit mailing list