[Zodb-checkins] CVS: Zope/utilities/ZODBTools - analyze.py:1.1.30.2 checkbtrees.py:1.1.30.2 fsdump.py:1.4.14.1 fsrefs.py:1.7.4.2 fstail.py:1.3.14.1 fstest.py:1.9.6.2 migrate.py:1.1.14.2 netspace.py:1.1.42.2 parsezeolog.py:1.4.16.2 repozo.py:1.5.6.2 space.py:1.3.42.2 timeout.py:1.2.2.2 zeopack.py:1.8.14.2 zeoqueue.py:1.4.14.2 zeoreplay.py:1.3.16.2 zeoserverlog.py:1.2.2.2 zeoup.py:1.13.16.2 zodbload.py:1.2.2.6

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


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

Modified Files:
      Tag: Zope-2_7-branch
	analyze.py checkbtrees.py fsdump.py fsrefs.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.1.30.1 => 1.1.30.2 ===
--- Zope/utilities/ZODBTools/analyze.py:1.1.30.1	Mon Sep 15 14:03:02 2003
+++ Zope/utilities/ZODBTools/analyze.py	Thu Mar 18 08:24:02 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.1.30.1 => 1.1.30.2 ===
--- Zope/utilities/ZODBTools/checkbtrees.py:1.1.30.1	Mon Sep 15 14:03:02 2003
+++ Zope/utilities/ZODBTools/checkbtrees.py	Thu Mar 18 08:24:02 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.4 => 1.4.14.1 ===
--- Zope/utilities/ZODBTools/fsdump.py:1.4	Mon Jan 20 11:32:39 2003
+++ Zope/utilities/ZODBTools/fsdump.py	Thu Mar 18 08:24:02 2004
@@ -1,4 +1,5 @@
-#!python
+#!/usr/bin/env python2.3
+
 """Print a text summary of the contents of a FileStorage."""
 
 from ZODB.fsdump import fsdump


=== Zope/utilities/ZODBTools/fsrefs.py 1.7.4.1 => 1.7.4.2 ===
--- Zope/utilities/ZODBTools/fsrefs.py:1.7.4.1	Mon Sep 15 14:03:02 2003
+++ Zope/utilities/ZODBTools/fsrefs.py	Thu Mar 18 08:24:02 2004
@@ -1,4 +1,4 @@
-#!python
+#!/usr/bin/env python2.3
 
 ##############################################################################
 #


=== Zope/utilities/ZODBTools/fstail.py 1.3 => 1.3.14.1 ===
--- Zope/utilities/ZODBTools/fstail.py:1.3	Mon Jan 20 11:32:39 2003
+++ Zope/utilities/ZODBTools/fstail.py	Thu Mar 18 08:24:02 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.9.6.1 => 1.9.6.2 ===
--- Zope/utilities/ZODBTools/fstest.py:1.9.6.1	Mon Sep 15 14:03:02 2003
+++ Zope/utilities/ZODBTools/fstest.py	Thu Mar 18 08:24:02 2004
@@ -1,4 +1,4 @@
-#!python
+#!/usr/bin/env python2.3
 
 ##############################################################################
 #


=== Zope/utilities/ZODBTools/migrate.py 1.1.14.1 => 1.1.14.2 ===
--- Zope/utilities/ZODBTools/migrate.py:1.1.14.1	Mon Sep 15 14:03:02 2003
+++ Zope/utilities/ZODBTools/migrate.py	Thu Mar 18 08:24:02 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.1.42.1 => 1.1.42.2 ===
--- Zope/utilities/ZODBTools/netspace.py:1.1.42.1	Mon Sep 15 14:03:02 2003
+++ Zope/utilities/ZODBTools/netspace.py	Thu Mar 18 08:24:02 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.4.16.1 => 1.4.16.2 ===
--- Zope/utilities/ZODBTools/parsezeolog.py:1.4.16.1	Mon Sep 15 14:03:02 2003
+++ Zope/utilities/ZODBTools/parsezeolog.py	Thu Mar 18 08:24:02 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.5.6.1 => 1.5.6.2 ===
--- Zope/utilities/ZODBTools/repozo.py:1.5.6.1	Mon Sep 15 14:03:02 2003
+++ Zope/utilities/ZODBTools/repozo.py	Thu Mar 18 08:24:02 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.3.42.1 => 1.3.42.2 ===
--- Zope/utilities/ZODBTools/space.py:1.3.42.1	Mon Sep 29 18:06:11 2003
+++ Zope/utilities/ZODBTools/space.py	Thu Mar 18 08:24:02 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.2.1 => 1.2.2.2 ===
--- Zope/utilities/ZODBTools/timeout.py:1.2.2.1	Mon Sep 15 14:03:02 2003
+++ Zope/utilities/ZODBTools/timeout.py	Thu Mar 18 08:24:02 2004
@@ -1,4 +1,4 @@
-#!python
+#!/usr/bin/env python2.3
 
 """Transaction timeout test script.
 


=== Zope/utilities/ZODBTools/zeopack.py 1.8.14.1 => 1.8.14.2 ===
--- Zope/utilities/ZODBTools/zeopack.py:1.8.14.1	Mon Sep 15 14:03:02 2003
+++ Zope/utilities/ZODBTools/zeopack.py	Thu Mar 18 08:24:02 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.4.14.1 => 1.4.14.2 ===
--- Zope/utilities/ZODBTools/zeoqueue.py:1.4.14.1	Mon Sep 15 14:03:02 2003
+++ Zope/utilities/ZODBTools/zeoqueue.py	Thu Mar 18 08:24:02 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.3.16.1 => 1.3.16.2 ===
--- Zope/utilities/ZODBTools/zeoreplay.py:1.3.16.1	Mon Sep 15 14:03:02 2003
+++ Zope/utilities/ZODBTools/zeoreplay.py	Thu Mar 18 08:24:02 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.2.2.1 => 1.2.2.2 ===
--- Zope/utilities/ZODBTools/zeoserverlog.py:1.2.2.1	Mon Sep 15 14:03:02 2003
+++ Zope/utilities/ZODBTools/zeoserverlog.py	Thu Mar 18 08:24:02 2004
@@ -1,4 +1,5 @@
-#!python
+#!/usr/bin/env python2.3
+
 ##############################################################################
 #
 # Copyright (c) 2003 Zope Corporation and Contributors.


=== Zope/utilities/ZODBTools/zeoup.py 1.13.16.1 => 1.13.16.2 ===
--- Zope/utilities/ZODBTools/zeoup.py:1.13.16.1	Mon Sep 15 14:03:02 2003
+++ Zope/utilities/ZODBTools/zeoup.py	Thu Mar 18 08:24:02 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.2.2.5 => 1.2.2.6 ===
--- Zope/utilities/ZODBTools/zodbload.py:1.2.2.5	Tue Oct 14 09:45:39 2003
+++ Zope/utilities/ZODBTools/zodbload.py	Thu Mar 18 08:24:02 2004
@@ -1,4 +1,5 @@
-#!python
+#!/usr/bin/env python2.3
+
 ##############################################################################
 #
 # Copyright (c) 2003 Zope Corporation and Contributors.




More information about the Zodb-checkins mailing list