[Zope-Checkins] SVN: Zope/trunk/ - LP #399633: fixed interpreter paths

Andreas Jung andreas at andreas-jung.com
Sun Jul 19 08:11:30 EDT 2009


Log message for revision 102011:
  - LP #399633: fixed interpreter paths
  

Changed:
  U   Zope/trunk/doc/CHANGES.rst
  U   Zope/trunk/src/ZPublisher/tests/generate_conflicts.py
  U   Zope/trunk/src/Zope2/utilities/check_catalog.py
  U   Zope/trunk/src/Zope2/utilities/compilezpy.py
  U   Zope/trunk/src/Zope2/utilities/copyzopeskel.py
  U   Zope/trunk/src/Zope2/utilities/decompilezpy.py
  U   Zope/trunk/src/Zope2/utilities/load_site.py
  U   Zope/trunk/src/Zope2/utilities/mkzeoinstance.py
  U   Zope/trunk/src/Zope2/utilities/mkzopeinstance.py
  U   Zope/trunk/src/Zope2/utilities/requestprofiler.py
  U   Zope/trunk/src/Zope2/utilities/zpasswd.py

-=-
Modified: Zope/trunk/doc/CHANGES.rst
===================================================================
--- Zope/trunk/doc/CHANGES.rst	2009-07-19 12:09:32 UTC (rev 102010)
+++ Zope/trunk/doc/CHANGES.rst	2009-07-19 12:11:30 UTC (rev 102011)
@@ -37,3 +37,5 @@
 
 - LP #397861: exporting $PYTHON in generated 'zopectl' for fixing import issue
   with "bin/zopectl adduser"
+
+- LP #399633: fixed interpreter paths

Modified: Zope/trunk/src/ZPublisher/tests/generate_conflicts.py
===================================================================
--- Zope/trunk/src/ZPublisher/tests/generate_conflicts.py	2009-07-19 12:09:32 UTC (rev 102010)
+++ Zope/trunk/src/ZPublisher/tests/generate_conflicts.py	2009-07-19 12:11:30 UTC (rev 102011)
@@ -1,10 +1,10 @@
 ## This script requires:
-## - python2.4
+## - python >= 2.4
 ## - Zope 3's zope.testbrowser package:
 ##   http://www.zope.org/Members/benji_york/ZopeTestbrowser-0.9.0.tgz
 ##
 ## The just run:
-## $python2.4 generate_conflicts.py
+## $python generate_conflicts.py
 import base64
 import string
 import threading

Modified: Zope/trunk/src/Zope2/utilities/check_catalog.py
===================================================================
--- Zope/trunk/src/Zope2/utilities/check_catalog.py	2009-07-19 12:09:32 UTC (rev 102010)
+++ Zope/trunk/src/Zope2/utilities/check_catalog.py	2009-07-19 12:11:30 UTC (rev 102011)
@@ -1,4 +1,3 @@
-#!/usr/bin/env python2.4
 ##############################################################################
 #
 # Copyright (c) 2002 Zope Corporation and Contributors. All Rights Reserved.

Modified: Zope/trunk/src/Zope2/utilities/compilezpy.py
===================================================================
--- Zope/trunk/src/Zope2/utilities/compilezpy.py	2009-07-19 12:09:32 UTC (rev 102010)
+++ Zope/trunk/src/Zope2/utilities/compilezpy.py	2009-07-19 12:11:30 UTC (rev 102011)
@@ -1,5 +1,3 @@
-#!/usr/bin/env python2.4
-
 ##############################################################################
 #
 # Copyright (c) 2002 Zope Corporation and Contributors. All Rights Reserved.

Modified: Zope/trunk/src/Zope2/utilities/copyzopeskel.py
===================================================================
--- Zope/trunk/src/Zope2/utilities/copyzopeskel.py	2009-07-19 12:09:32 UTC (rev 102010)
+++ Zope/trunk/src/Zope2/utilities/copyzopeskel.py	2009-07-19 12:11:30 UTC (rev 102011)
@@ -1,5 +1,3 @@
-#!/usr/bin/env python2.4
-
 ##############################################################################
 #
 # Copyright (c) 2002 Zope Corporation and Contributors. All Rights Reserved.

Modified: Zope/trunk/src/Zope2/utilities/decompilezpy.py
===================================================================
--- Zope/trunk/src/Zope2/utilities/decompilezpy.py	2009-07-19 12:09:32 UTC (rev 102010)
+++ Zope/trunk/src/Zope2/utilities/decompilezpy.py	2009-07-19 12:11:30 UTC (rev 102011)
@@ -1,5 +1,3 @@
-#!/usr/bin/env python2.4
-
 ##############################################################################
 #
 # Copyright (c) 2002 Zope Corporation and Contributors. All Rights Reserved.

Modified: Zope/trunk/src/Zope2/utilities/load_site.py
===================================================================
--- Zope/trunk/src/Zope2/utilities/load_site.py	2009-07-19 12:09:32 UTC (rev 102010)
+++ Zope/trunk/src/Zope2/utilities/load_site.py	2009-07-19 12:11:30 UTC (rev 102011)
@@ -1,5 +1,3 @@
-#!/usr/bin/env python2.4
-
 ##############################################################################
 #
 # Copyright (c) 2002 Zope Corporation and Contributors. All Rights Reserved.

Modified: Zope/trunk/src/Zope2/utilities/mkzeoinstance.py
===================================================================
--- Zope/trunk/src/Zope2/utilities/mkzeoinstance.py	2009-07-19 12:09:32 UTC (rev 102010)
+++ Zope/trunk/src/Zope2/utilities/mkzeoinstance.py	2009-07-19 12:11:30 UTC (rev 102011)
@@ -1,5 +1,3 @@
-#!/usr/bin/env python2.4
-
 ##############################################################################
 #
 # Copyright (c) 2002 Zope Corporation and Contributors. All Rights Reserved.

Modified: Zope/trunk/src/Zope2/utilities/mkzopeinstance.py
===================================================================
--- Zope/trunk/src/Zope2/utilities/mkzopeinstance.py	2009-07-19 12:09:32 UTC (rev 102010)
+++ Zope/trunk/src/Zope2/utilities/mkzopeinstance.py	2009-07-19 12:11:30 UTC (rev 102011)
@@ -1,5 +1,3 @@
-#!/usr/bin/env python2.4
-
 ##############################################################################
 #
 # Copyright (c) 2002 Zope Corporation and Contributors. All Rights Reserved.

Modified: Zope/trunk/src/Zope2/utilities/requestprofiler.py
===================================================================
--- Zope/trunk/src/Zope2/utilities/requestprofiler.py	2009-07-19 12:09:32 UTC (rev 102010)
+++ Zope/trunk/src/Zope2/utilities/requestprofiler.py	2009-07-19 12:11:30 UTC (rev 102011)
@@ -1,4 +1,3 @@
-#!/usr/bin/env python2.4
 ##############################################################################
 #
 # Copyright (c) 2002 Zope Corporation and Contributors. All Rights Reserved.

Modified: Zope/trunk/src/Zope2/utilities/zpasswd.py
===================================================================
--- Zope/trunk/src/Zope2/utilities/zpasswd.py	2009-07-19 12:09:32 UTC (rev 102010)
+++ Zope/trunk/src/Zope2/utilities/zpasswd.py	2009-07-19 12:11:30 UTC (rev 102011)
@@ -1,5 +1,3 @@
-#!/usr/bin/env python2.4
-
 ##############################################################################
 #
 # Copyright (c) 2001,2002 Zope Corporation and Contributors.



More information about the Zope-Checkins mailing list