Revision: 989
Author: sbigaret
Date: 2006-04-09 06:54:25 -0700 (Sun, 09 Apr 2006)
ViewCVS: http://svn.sourceforge.net/modeling/?rev=989&view=rev
Log Message:
-----------
Fixed bug #621210: defining __cmp__ leads to infinite loop
Modified Paths:
--------------
trunk/ProjectModeling/Modeling/tests/testPackages/AuthorBooks/__init__.py
Modified: trunk/ProjectModeling/Modeling/tests/testPackages/AuthorBooks/__init__.py
===================================================================
--- trunk/ProjectModeling/Modeling/tests/testPackages/AuthorBooks/__init__.py 2006-04-09 13:53:19 UTC (rev 988)
+++ trunk/ProjectModeling/Modeling/tests/testPackages/AuthorBooks/__init__.py 2006-04-09 13:54:25 UTC (rev 989)
@@ -2,6 +2,8 @@
from Modeling import ModelSet, Model
+allow_cmp = 1 # part of the test for bug #621210
+
if ModelSet.defaultModelSet().modelNamed("AuthorBooks") is None:
import os
mydir = os.path.abspath(os.path.dirname(__file__))
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|