[Zope-Checkins] CVS: Zope/utilities/ZODBTools - analyze.py:1.3 checkbtrees.py:1.3 fsdump.py:1.6 fsrefs.py:1.9 fsstats.py:1.3 fstail.py:1.5 fstest.py:1.11 migrate.py:1.4 netspace.py:1.4 parsezeolog.py:1.7 repozo.py:1.8 space.py:1.7 timeout.py:1.3 zeopack.py:1.10 zeoqueue.py:1.6 zeoreplay.py:1.5 zeoserverlog.py:1.5 zeoup.py:1.16 zodbload.py:1.5

Yvo Schubbe y.2004_ at wcm-solutions.de
Thu Mar 18 08:28:20 EST 2004


Update of /cvs-repository/Zope/utilities/ZODBTools
In directory cvs.zope.org:/tmp/cvs-serv14082/utilities/ZODBTools

Modified Files:
	analyze.py checkbtrees.py fsdump.py fsrefs.py fsstats.py 
	fstail.py fstest.py migrate.py netspace.py parsezeolog.py 
	repozo.py space.py timeout.py zeopack.py zeoqueue.py 
	zeoreplay.py zeoserverlog.py zeoup.py zodbload.py 
Log Message:
updated / unified sha-bang as discussed on zope-dev
(distutils mungs it anyway, so it's just relevant for developers)


=== Zope/utilities/ZODBTools/analyze.py 1.2 => 1.3 ===
--- Zope/utilities/ZODBTools/analyze.py:1.2	Mon Sep 15 12:29:20 2003
+++ Zope/utilities/ZODBTools/analyze.py	Thu Mar 18 08:27:49 2004
@@ -1,4 +1,5 @@
-#!python
+#!/usr/bin/env python2.3
+
 # Based on a transaction analyzer by Matt Kromer.
 
 import pickle


=== Zope/utilities/ZODBTools/checkbtrees.py 1.2 => 1.3 ===
--- Zope/utilities/ZODBTools/checkbtrees.py:1.2	Mon Sep 15 12:29:20 2003
+++ Zope/utilities/ZODBTools/checkbtrees.py	Thu Mar 18 08:27:49 2004
@@ -1,4 +1,5 @@
-#!python
+#!/usr/bin/env python2.3
+
 """Check the consistency of BTrees in a Data.fs
 
 usage: checkbtrees.py data.fs


=== Zope/utilities/ZODBTools/fsdump.py 1.5 => 1.6 ===
--- Zope/utilities/ZODBTools/fsdump.py:1.5	Wed Dec 24 11:02:05 2003
+++ Zope/utilities/ZODBTools/fsdump.py	Thu Mar 18 08:27:49 2004
@@ -1,4 +1,5 @@
-#!python
+#!/usr/bin/env python2.3
+
 """Print a text summary of the contents of a FileStorage."""
 
 from ZODB.FileStorage.fsdump import fsdump


=== Zope/utilities/ZODBTools/fsrefs.py 1.8 => 1.9 ===
--- Zope/utilities/ZODBTools/fsrefs.py:1.8	Mon Sep 15 12:29:19 2003
+++ Zope/utilities/ZODBTools/fsrefs.py	Thu Mar 18 08:27:49 2004
@@ -1,4 +1,4 @@
-#!python
+#!/usr/bin/env python2.3
 
 ##############################################################################
 #


=== Zope/utilities/ZODBTools/fsstats.py 1.2 => 1.3 ===
--- Zope/utilities/ZODBTools/fsstats.py:1.2	Mon Dec 29 17:40:46 2003
+++ Zope/utilities/ZODBTools/fsstats.py	Thu Mar 18 08:27:49 2004
@@ -1,4 +1,5 @@
-#!python
+#!/usr/bin/env python2.3
+
 """Print details statistics from fsdump output."""
 
 import re


=== Zope/utilities/ZODBTools/fstail.py 1.4 => 1.5 ===
--- Zope/utilities/ZODBTools/fstail.py:1.4	Thu Feb 26 19:31:57 2004
+++ Zope/utilities/ZODBTools/fstail.py	Thu Mar 18 08:27:49 2004
@@ -1,4 +1,5 @@
-#!python
+#!/usr/bin/env python2.3
+
 ##############################################################################
 #
 # Copyright (c) 2001, 2002 Zope Corporation and Contributors.


=== Zope/utilities/ZODBTools/fstest.py 1.10 => 1.11 ===
--- Zope/utilities/ZODBTools/fstest.py:1.10	Mon Sep 15 12:29:19 2003
+++ Zope/utilities/ZODBTools/fstest.py	Thu Mar 18 08:27:49 2004
@@ -1,4 +1,4 @@
-#!python
+#!/usr/bin/env python2.3
 
 ##############################################################################
 #


=== Zope/utilities/ZODBTools/migrate.py 1.3 => 1.4 ===
--- Zope/utilities/ZODBTools/migrate.py:1.3	Thu Feb 26 19:31:57 2004
+++ Zope/utilities/ZODBTools/migrate.py	Thu Mar 18 08:27:49 2004
@@ -1,4 +1,5 @@
-#!python
+#!/usr/bin/env python2.3
+
 ##############################################################################
 #
 # Copyright (c) 2001, 2002, 2003 Zope Corporation and Contributors.


=== Zope/utilities/ZODBTools/netspace.py 1.3 => 1.4 ===
--- Zope/utilities/ZODBTools/netspace.py:1.3	Mon Nov  3 13:56:32 2003
+++ Zope/utilities/ZODBTools/netspace.py	Thu Mar 18 08:27:49 2004
@@ -1,4 +1,5 @@
-#!python
+#!/usr/bin/env python2.3
+
 """Report on the net size of objects counting subobjects.
 
 usage: netspace.py [-P | -v] data.fs


=== Zope/utilities/ZODBTools/parsezeolog.py 1.6 => 1.7 ===
--- Zope/utilities/ZODBTools/parsezeolog.py:1.6	Thu Feb 26 19:31:57 2004
+++ Zope/utilities/ZODBTools/parsezeolog.py	Thu Mar 18 08:27:49 2004
@@ -1,4 +1,5 @@
-#!python
+#!/usr/bin/env python2.3
+
 """Parse the BLATHER logging generated by ZEO2.
 
 An example of the log format is:


=== Zope/utilities/ZODBTools/repozo.py 1.7 => 1.8 ===
--- Zope/utilities/ZODBTools/repozo.py:1.7	Mon Nov  3 13:56:32 2003
+++ Zope/utilities/ZODBTools/repozo.py	Thu Mar 18 08:27:49 2004
@@ -1,4 +1,4 @@
-#!python
+#!/usr/bin/env python2.3
 
 # repozo.py -- incremental and full backups of a Data.fs file.
 #


=== Zope/utilities/ZODBTools/space.py 1.6 => 1.7 ===
--- Zope/utilities/ZODBTools/space.py:1.6	Thu Feb 26 19:31:57 2004
+++ Zope/utilities/ZODBTools/space.py	Thu Mar 18 08:27:49 2004
@@ -1,4 +1,4 @@
-#! /usr/bin/env python
+#!/usr/bin/env python2.3
 
 """Report on the space used by objects in a storage.
 


=== Zope/utilities/ZODBTools/timeout.py 1.2 => 1.3 ===
--- Zope/utilities/ZODBTools/timeout.py:1.2	Mon Sep 15 12:29:19 2003
+++ Zope/utilities/ZODBTools/timeout.py	Thu Mar 18 08:27:49 2004
@@ -1,4 +1,4 @@
-#!python
+#!/usr/bin/env python2.3
 
 """Transaction timeout test script.
 


=== Zope/utilities/ZODBTools/zeopack.py 1.9 => 1.10 ===
--- Zope/utilities/ZODBTools/zeopack.py:1.9	Mon Sep 15 12:29:19 2003
+++ Zope/utilities/ZODBTools/zeopack.py	Thu Mar 18 08:27:49 2004
@@ -1,4 +1,5 @@
-#!python
+#!/usr/bin/env python2.3
+
 """Connect to a ZEO server and ask it to pack.
 
 Usage: zeopack.py [options]


=== Zope/utilities/ZODBTools/zeoqueue.py 1.5 => 1.6 ===
--- Zope/utilities/ZODBTools/zeoqueue.py:1.5	Mon Sep 15 12:29:19 2003
+++ Zope/utilities/ZODBTools/zeoqueue.py	Thu Mar 18 08:27:49 2004
@@ -1,4 +1,5 @@
-#!python
+#!/usr/bin/env python2.3
+
 """Report on the number of currently waiting clients in the ZEO queue.
 
 Usage: %(PROGRAM)s [options] logfile


=== Zope/utilities/ZODBTools/zeoreplay.py 1.4 => 1.5 ===
--- Zope/utilities/ZODBTools/zeoreplay.py:1.4	Mon Sep 15 12:29:19 2003
+++ Zope/utilities/ZODBTools/zeoreplay.py	Thu Mar 18 08:27:49 2004
@@ -1,4 +1,5 @@
-#!python
+#!/usr/bin/env python2.3
+
 """Parse the BLATHER logging generated by ZEO, and optionally replay it.
 
 Usage: zeointervals.py [options]


=== Zope/utilities/ZODBTools/zeoserverlog.py 1.4 => 1.5 ===
--- Zope/utilities/ZODBTools/zeoserverlog.py:1.4	Fri Oct 24 11:29:13 2003
+++ Zope/utilities/ZODBTools/zeoserverlog.py	Thu Mar 18 08:27:49 2004
@@ -1,4 +1,5 @@
-#!python
+#!/usr/bin/env python2.3
+
 ##############################################################################
 #
 # Copyright (c) 2003 Zope Corporation and Contributors.


=== Zope/utilities/ZODBTools/zeoup.py 1.15 => 1.16 ===
--- Zope/utilities/ZODBTools/zeoup.py:1.15	Fri Nov 28 11:44:57 2003
+++ Zope/utilities/ZODBTools/zeoup.py	Thu Mar 18 08:27:49 2004
@@ -1,4 +1,5 @@
-#!python
+#!/usr/bin/env python2.3
+
 """Make sure a ZEO server is running.
 
 usage: zeoup.py [options]


=== Zope/utilities/ZODBTools/zodbload.py 1.4 => 1.5 ===
--- Zope/utilities/ZODBTools/zodbload.py:1.4	Wed Nov 19 10:36:31 2003
+++ Zope/utilities/ZODBTools/zodbload.py	Thu Mar 18 08:27:49 2004
@@ -1,4 +1,5 @@
-#!python
+#!/usr/bin/env python2.3
+
 ##############################################################################
 #
 # Copyright (c) 2003 Zope Corporation and Contributors.




More information about the Zope-Checkins mailing list