You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@qpid.apache.org by rh...@apache.org on 2009/06/02 17:28:28 UTC

svn commit: r781059 - /qpid/trunk/qpid/python/qpid-python-test

Author: rhs
Date: Tue Jun  2 15:28:27 2009
New Revision: 781059

URL: http://svn.apache.org/viewvc?rev=781059&view=rev
Log:
removed keyword arg from __import__ call for python 2.4

Modified:
    qpid/trunk/qpid/python/qpid-python-test

Modified: qpid/trunk/qpid/python/qpid-python-test
URL: http://svn.apache.org/viewvc/qpid/trunk/qpid/python/qpid-python-test?rev=781059&r1=781058&r2=781059&view=diff
==============================================================================
--- qpid/trunk/qpid/python/qpid-python-test (original)
+++ qpid/trunk/qpid/python/qpid-python-test Tue Jun  2 15:28:27 2009
@@ -431,7 +431,7 @@
 modules = "qpid.tests", "tests", "tests_0-10"
 h = Harness()
 for name in modules:
-  m = __import__(name, fromlist=["dummy"])
+  m = __import__(name, None, None, ["dummy"])
   h.scan(m)
 
 filtered = [t for t in h.tests if included(t.name())]



---------------------------------------------------------------------
Apache Qpid - AMQP Messaging Implementation
Project:      http://qpid.apache.org
Use/Interact: mailto:commits-subscribe@qpid.apache.org