[Checkins] SVN: zope.testrunner/trunk/ Keep the distribution installable under Python 2.4.

Tres Seaver tseaver at palladion.com
Wed Jun 16 09:09:21 EDT 2010


Log message for revision 113536:
  Keep the distribution installable under Python 2.4.
  
  Its distutils appears to munge the empty ``__init__.py`` file in the
  ``foo.bar`` egg used for testing into a directory.
  
  Fixes LP #595052.
  

Changed:
  U   zope.testrunner/trunk/CHANGES.txt
  U   zope.testrunner/trunk/src/zope/testrunner/testrunner-ex-251759/eggs/foo.bar-1.2-py2.5.egg/foo/bar/__init__.py
  U   zope.testrunner/trunk/src/zope/testrunner/testrunner-ex-251759/eggs/foo.bar-1.2-py2.5.egg/foo/bar/tests.py

-=-
Modified: zope.testrunner/trunk/CHANGES.txt
===================================================================
--- zope.testrunner/trunk/CHANGES.txt	2010-06-16 13:07:27 UTC (rev 113535)
+++ zope.testrunner/trunk/CHANGES.txt	2010-06-16 13:09:21 UTC (rev 113536)
@@ -4,10 +4,15 @@
 4.0.0b3 (unreleased)
 ====================
 
+- LP #595052: keep the distribution installable under Python 2.4:  its
+  distutils appears to munge the empty ``__init__.py`` file in the
+  ``foo.bar`` egg used for testing into a directory.
+
 - LP #579019: When layers were run in parallel, their tearDown was
   not called. Additionally, the first layer which was run in the main
   thread did not have it's tearDown called either.
 
+
 4.0.0b2 (2010-05-03)
 ====================
 
@@ -18,6 +23,7 @@
   zope.testrunner no longer requires zope.testing except for when running
   its own tests.
 
+
 4.0.0b1 (2010-04-29)
 ====================
 

Modified: zope.testrunner/trunk/src/zope/testrunner/testrunner-ex-251759/eggs/foo.bar-1.2-py2.5.egg/foo/bar/__init__.py
===================================================================
--- zope.testrunner/trunk/src/zope/testrunner/testrunner-ex-251759/eggs/foo.bar-1.2-py2.5.egg/foo/bar/__init__.py	2010-06-16 13:07:27 UTC (rev 113535)
+++ zope.testrunner/trunk/src/zope/testrunner/testrunner-ex-251759/eggs/foo.bar-1.2-py2.5.egg/foo/bar/__init__.py	2010-06-16 13:09:21 UTC (rev 113536)
@@ -0,0 +1 @@
+#package

Modified: zope.testrunner/trunk/src/zope/testrunner/testrunner-ex-251759/eggs/foo.bar-1.2-py2.5.egg/foo/bar/tests.py
===================================================================
--- zope.testrunner/trunk/src/zope/testrunner/testrunner-ex-251759/eggs/foo.bar-1.2-py2.5.egg/foo/bar/tests.py	2010-06-16 13:07:27 UTC (rev 113535)
+++ zope.testrunner/trunk/src/zope/testrunner/testrunner-ex-251759/eggs/foo.bar-1.2-py2.5.egg/foo/bar/tests.py	2010-06-16 13:09:21 UTC (rev 113536)
@@ -0,0 +1 @@
+#tests



More information about the checkins mailing list