[Zodb-checkins] CVS: ZODB3/Tools - fsdump.py:1.4 fsrefs.py:1.5 fstail.py:1.3 fstest.py:1.8

Guido van Rossum guido@python.org
Mon, 20 Jan 2003 11:33:13 -0500


Update of /cvs-repository/ZODB3/Tools
In directory cvs.zope.org:/tmp/cvs-serv9065/Tools

Modified Files:
	fsdump.py fsrefs.py fstail.py fstest.py 
Log Message:
Change all #! lines to read "#!python".  This seems to be the only way
that we can get distutils install to munge the #! line to insert the
proper Python executable file name.  (/usr/local/bin/python would work
too, but may not be the Python version that you intended to use, so
IMO it's better to require that you use an explicit Python interpreter
when invoking the scripts before they are installed.


=== ZODB3/Tools/fsdump.py 1.3 => 1.4 ===
--- ZODB3/Tools/fsdump.py:1.3	Wed Dec  4 17:49:20 2002
+++ ZODB3/Tools/fsdump.py	Mon Jan 20 11:32:39 2003
@@ -1,4 +1,4 @@
-#! /usr/bin/env python
+#!python
 """Print a text summary of the contents of a FileStorage."""
 
 from ZODB.fsdump import fsdump


=== ZODB3/Tools/fsrefs.py 1.4 => 1.5 ===
--- ZODB3/Tools/fsrefs.py:1.4	Mon Nov  4 10:20:19 2002
+++ ZODB3/Tools/fsrefs.py	Mon Jan 20 11:32:39 2003
@@ -1,4 +1,4 @@
-#! /usr/bin/env python
+#!python
 
 ##############################################################################
 #


=== ZODB3/Tools/fstail.py 1.2 => 1.3 ===
--- ZODB3/Tools/fstail.py:1.2	Mon Nov 18 16:04:26 2002
+++ ZODB3/Tools/fstail.py	Mon Jan 20 11:32:39 2003
@@ -1,4 +1,4 @@
-#! /usr/bin/env python
+#!python
 ##############################################################################
 #
 # Copyright (c) 2001, 2002 Zope Corporation and Contributors.


=== ZODB3/Tools/fstest.py 1.7 => 1.8 ===
--- ZODB3/Tools/fstest.py:1.7	Mon Nov 25 10:36:10 2002
+++ ZODB3/Tools/fstest.py	Mon Jan 20 11:32:39 2003
@@ -1,4 +1,4 @@
-#! /usr/bin/env python
+#!python
 
 ##############################################################################
 #