Revision: 473
http://rpy.svn.sourceforge.net/rpy/?rev=473&view=rev
Author: lgautier
Date: 2008-03-30 00:29:46 -0700 (Sun, 30 Mar 2008)
Log Message:
-----------
Removed relative imports for compatibility with Python 2.4
Modified Paths:
--------------
branches/rpy_nextgen/rpy/rinterface/tests/__init__.py
branches/rpy_nextgen/rpy/robjects/tests/__init__.py
Modified: branches/rpy_nextgen/rpy/rinterface/tests/__init__.py
===================================================================
--- branches/rpy_nextgen/rpy/rinterface/tests/__init__.py 2008-03-28
21:00:07 UTC (rev 472)
+++ branches/rpy_nextgen/rpy/rinterface/tests/__init__.py 2008-03-30
07:29:46 UTC (rev 473)
@@ -1,8 +1,8 @@
import unittest
-from . import test_SexpVector
-from . import test_SexpEnvironment
-from . import test_Sexp
+import test_SexpVector
+import test_SexpEnvironment
+import test_Sexp
def suite():
suite_SexpVector = test_SexpVector.suite()
Modified: branches/rpy_nextgen/rpy/robjects/tests/__init__.py
===================================================================
--- branches/rpy_nextgen/rpy/robjects/tests/__init__.py 2008-03-28 21:00:07 UTC
(rev 472)
+++ branches/rpy_nextgen/rpy/robjects/tests/__init__.py 2008-03-30 07:29:46 UTC
(rev 473)
@@ -1,7 +1,6 @@
import unittest
+import testRobjects
-from . import testRobjects
-
def suite():
suite_Robjects = testRobjects.suite()
alltests = unittest.TestSuite([suite_Robjects, ])
This was sent by the SourceForge.net collaborative development platform, the
world's largest Open Source development site.
-------------------------------------------------------------------------
Check out the new SourceForge.net Marketplace.
It's the best place to buy or sell services for
just about anything Open Source.
http://ad.doubleclick.net/clk;164216239;13503038;w?http://sf.net/marketplace
_______________________________________________
rpy-list mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/rpy-list