[Zope-Checkins] CVS: Zope/utilities - check_catalog.py:1.5.66.1 compilezpy.py:1.1.2.2 copyzopeskel.py:1.1.2.2 decompilezpy.py:1.1.2.2 load_site.py:1.10.66.1 mkzeoinstance.py:1.1.2.1 mkzopeinstance.py:1.2.2.6 requestprofiler.py:1.17.66.2 testrunner.py:1.37.2.2 zpasswd.py:1.4.2.2

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


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

Modified Files:
      Tag: Zope-2_7-branch
	check_catalog.py compilezpy.py copyzopeskel.py decompilezpy.py 
	load_site.py mkzeoinstance.py mkzopeinstance.py 
	requestprofiler.py testrunner.py zpasswd.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/check_catalog.py 1.5 => 1.5.66.1 ===
--- Zope/utilities/check_catalog.py:1.5	Wed Aug 14 17:22:57 2002
+++ Zope/utilities/check_catalog.py	Thu Mar 18 08:24:04 2004
@@ -1,4 +1,4 @@
-#!/usr/bin/env python2.1
+#!/usr/bin/env python2.3
 
 ##############################################################################
 #


=== Zope/utilities/compilezpy.py 1.1.2.1 => 1.1.2.2 ===
--- Zope/utilities/compilezpy.py:1.1.2.1	Thu Jul 24 16:12:31 2003
+++ Zope/utilities/compilezpy.py	Thu Mar 18 08:24:04 2004
@@ -1,4 +1,5 @@
-#!/usr/bin/env python
+#!/usr/bin/env python2.3
+
 ##############################################################################
 #
 # Copyright (c) 2001 Zope Corporation and Contributors. All Rights Reserved.


=== Zope/utilities/copyzopeskel.py 1.1.2.1 => 1.1.2.2 ===
--- Zope/utilities/copyzopeskel.py:1.1.2.1	Thu Jul 24 16:11:35 2003
+++ Zope/utilities/copyzopeskel.py	Thu Mar 18 08:24:04 2004
@@ -1,4 +1,5 @@
-#! python
+#!/usr/bin/env python2.3
+
 ##############################################################################
 #
 # Copyright (c) 2001 Zope Corporation and Contributors. All Rights Reserved.


=== Zope/utilities/decompilezpy.py 1.1.2.1 => 1.1.2.2 ===
--- Zope/utilities/decompilezpy.py:1.1.2.1	Thu Jul 24 16:12:31 2003
+++ Zope/utilities/decompilezpy.py	Thu Mar 18 08:24:04 2004
@@ -1,28 +1,29 @@
-#!/usr/bin/env python
-##############################################################################
-#
-# Copyright (c) 2001 Zope Corporation and Contributors. All Rights Reserved.
-#
-# This software is subject to the provisions of the Zope Public License,
-# Version 2.0 (ZPL).  A copy of the ZPL should accompany this distribution.
-# THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL EXPRESS OR IMPLIED
-# WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
-# WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS
-# FOR A PARTICULAR PURPOSE
-#
-##############################################################################
-import os
-import sys
-
-def main(dirname):
-    os.path.walk(dirname, rmpycs, None)
-
-def rmpycs(arg, dirname, names):
-    for name in names:
-        path = os.path.join(dirname, name)
-        if ( name.endswith('.pyc') or name.endswith('.pyo') and
-             os.path.isfile(path) ):
-            os.unlink(path)
-
-if __name__ == '__main__':
-    main(sys.argv[1])
+#!/usr/bin/env python2.3
+
+##############################################################################
+#
+# Copyright (c) 2001 Zope Corporation and Contributors. All Rights Reserved.
+#
+# This software is subject to the provisions of the Zope Public License,
+# Version 2.0 (ZPL).  A copy of the ZPL should accompany this distribution.
+# THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL EXPRESS OR IMPLIED
+# WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
+# WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS
+# FOR A PARTICULAR PURPOSE
+#
+##############################################################################
+import os
+import sys
+
+def main(dirname):
+    os.path.walk(dirname, rmpycs, None)
+
+def rmpycs(arg, dirname, names):
+    for name in names:
+        path = os.path.join(dirname, name)
+        if ( name.endswith('.pyc') or name.endswith('.pyo') and
+             os.path.isfile(path) ):
+            os.unlink(path)
+
+if __name__ == '__main__':
+    main(sys.argv[1])


=== Zope/utilities/load_site.py 1.10 => 1.10.66.1 ===
--- Zope/utilities/load_site.py:1.10	Wed Aug 14 17:22:57 2002
+++ Zope/utilities/load_site.py	Thu Mar 18 08:24:04 2004
@@ -1,3 +1,5 @@
+#!/usr/bin/env python2.3
+
 ##############################################################################
 #
 # Copyright (c) 2001 Zope Corporation and Contributors. All Rights Reserved.


=== Zope/utilities/mkzeoinstance.py 1.1 => 1.1.2.1 ===
--- Zope/utilities/mkzeoinstance.py:1.1	Wed Jun 25 15:30:26 2003
+++ Zope/utilities/mkzeoinstance.py	Thu Mar 18 08:24:04 2004
@@ -1,4 +1,5 @@
-#!python
+#!/usr/bin/env python2.3
+
 ##############################################################################
 #
 # Copyright (c) 2001 Zope Corporation and Contributors. All Rights Reserved.


=== Zope/utilities/mkzopeinstance.py 1.2.2.5 => 1.2.2.6 ===
--- Zope/utilities/mkzopeinstance.py:1.2.2.5	Mon Aug 25 17:32:48 2003
+++ Zope/utilities/mkzopeinstance.py	Thu Mar 18 08:24:04 2004
@@ -1,4 +1,5 @@
-#! python
+#!/usr/bin/env python2.3
+
 ##############################################################################
 #
 # Copyright (c) 2001 Zope Corporation and Contributors. All Rights Reserved.


=== Zope/utilities/requestprofiler.py 1.17.66.1 => 1.17.66.2 ===
--- Zope/utilities/requestprofiler.py:1.17.66.1	Mon Jul 21 12:38:48 2003
+++ Zope/utilities/requestprofiler.py	Thu Mar 18 08:24:04 2004
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python2.3
 
 ##############################################################################
 #


=== Zope/utilities/testrunner.py 1.37.2.1 => 1.37.2.2 ===
--- Zope/utilities/testrunner.py:1.37.2.1	Fri Feb 27 16:50:06 2004
+++ Zope/utilities/testrunner.py	Thu Mar 18 08:24:05 2004
@@ -1,4 +1,5 @@
-#! /usr/bin/env python2.2
+#!/usr/bin/env python2.3
+
 """testrunner - a Zope test suite utility.
 
 The testrunner utility is used to execute PyUnit test suites. This utility


=== Zope/utilities/zpasswd.py 1.4.2.1 => 1.4.2.2 ===
--- Zope/utilities/zpasswd.py:1.4.2.1	Tue Jul 22 17:01:50 2003
+++ Zope/utilities/zpasswd.py	Thu Mar 18 08:24:05 2004
@@ -1,4 +1,5 @@
-#!/usr/bin/env python
+#!/usr/bin/env python2.3
+
 ##############################################################################
 #
 # Copyright (c) 2001,2002 Zope Corporation and Contributors.




More information about the Zope-Checkins mailing list