From: Alexander Belopolsky Date: Sun, 25 Jul 2010 15:05:42 +0000 (+0000) Subject: Corrected comments on where settrace and setprofile are tested. X-Git-Tag: v3.2a1~110 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=07de165d6ee05a3d3481579c5b125393cdbfd075;p=thirdparty%2FPython%2Fcpython.git Corrected comments on where settrace and setprofile are tested. --- diff --git a/Lib/test/test_sys.py b/Lib/test/test_sys.py index d55da6220041..9389254b7a07 100644 --- a/Lib/test/test_sys.py +++ b/Lib/test/test_sys.py @@ -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():