[Python-checkins] r57141 - sandbox/trunk/import_in_py/tests/test_ext_handler.py sandbox/trunk/import_in_py/tests/test_fs_importer.py

brett.cannon python-checkins at python.org
Fri Aug 17 09:57:12 CEST 2007


Author: brett.cannon
Date: Fri Aug 17 09:56:51 2007
New Revision: 57141

Modified:
   sandbox/trunk/import_in_py/tests/test_ext_handler.py
   sandbox/trunk/import_in_py/tests/test_fs_importer.py
Log:
Mark the extension handler tests as obsolete and a minor format cleanup.


Modified: sandbox/trunk/import_in_py/tests/test_ext_handler.py
==============================================================================
--- sandbox/trunk/import_in_py/tests/test_ext_handler.py	(original)
+++ sandbox/trunk/import_in_py/tests/test_ext_handler.py	Fri Aug 17 09:56:51 2007
@@ -9,6 +9,7 @@
 import unittest
 
 
+# XXX Obsolete.
 class ExtensionHandlerTests(unittest.TestCase):
     
     """Test that extension modules can be loaded."""

Modified: sandbox/trunk/import_in_py/tests/test_fs_importer.py
==============================================================================
--- sandbox/trunk/import_in_py/tests/test_fs_importer.py	(original)
+++ sandbox/trunk/import_in_py/tests/test_fs_importer.py	Fri Aug 17 09:56:51 2007
@@ -78,7 +78,6 @@
         ext = os.path.splitext(found)[1]
         self.assertEqual(ext, self.importer._suffixes[0])
 
-
     def test_missing__init__warning(self):
         # An ImportWarning should be raised if a directory matches a module
         # name but no __init__ file exists.


More information about the Python-checkins mailing list