[Checkins] SVN: zc.buildout/branches/help-api/src/zc/buildout/tests.py On Macs, the python executable has a capital P, so make this test case-insensitive.

Godefroid Chapelle gotcha at bubblenet.be
Sun Mar 29 17:16:28 EDT 2009


Log message for revision 98462:
  On Macs, the python executable has a capital P, so make this test case-insensitive.

Changed:
  U   zc.buildout/branches/help-api/src/zc/buildout/tests.py

-=-
Modified: zc.buildout/branches/help-api/src/zc/buildout/tests.py
===================================================================
--- zc.buildout/branches/help-api/src/zc/buildout/tests.py	2009-03-29 21:15:59 UTC (rev 98461)
+++ zc.buildout/branches/help-api/src/zc/buildout/tests.py	2009-03-29 21:16:27 UTC (rev 98462)
@@ -3009,7 +3009,7 @@
                zc.buildout.testing.normalize_egg_py,
                (re.compile('__buildout_signature__ = recipes-\S+'),
                 '__buildout_signature__ = recipes-SSSSSSSSSSS'),
-               (re.compile('executable = \S+python\S*'),
+               (re.compile('executable = \S+python\S*', re.I),
                 'executable = python'),
                (re.compile('[-d]  setuptools-\S+[.]egg'), 'setuptools.egg'),
                (re.compile('zc.buildout(-\S+)?[.]egg(-link)?'),



More information about the Checkins mailing list