]> granicus.if.org Git - python/commitdiff
Corrected comments on where settrace and setprofile are tested.
authorAlexander Belopolsky <alexander.belopolsky@gmail.com>
Sun, 25 Jul 2010 15:05:42 +0000 (15:05 +0000)
committerAlexander Belopolsky <alexander.belopolsky@gmail.com>
Sun, 25 Jul 2010 15:05:42 +0000 (15:05 +0000)
Lib/test/test_sys.py

index d55da622004147beff16133dae5db6f1566e551b..9389254b7a073420ed236d99310c5e7048ef84a0 100644 (file)
@@ -179,8 +179,8 @@ class SysModuleTest(unittest.TestCase):
         # can't check more than the type, as the user might have changed it
         self.assertIsInstance(sys.getdefaultencoding(), str)
 
-    # testing sys.settrace() is done in test_trace.py
-    # testing sys.setprofile() is done in test_profile.py
+    # testing sys.settrace() is done in test_sys_settrace.py
+    # testing sys.setprofile() is done in test_sys_setprofile.py
 
     def test_setcheckinterval(self):
         with warnings.catch_warnings():