diff options
author | Alexander Belopolsky <alexander.belopolsky@gmail.com> | 2010-07-25 15:05:42 (GMT) |
---|---|---|
committer | Alexander Belopolsky <alexander.belopolsky@gmail.com> | 2010-07-25 15:05:42 (GMT) |
commit | 07de165d6ee05a3d3481579c5b125393cdbfd075 (patch) | |
tree | 26e8c2822263d9581fb1d7b70c2ed91c167893ad /Lib | |
parent | 13c475385bc7ca46050d5162dfe277d0b9a8094f (diff) | |
download | cpython-07de165d6ee05a3d3481579c5b125393cdbfd075.zip cpython-07de165d6ee05a3d3481579c5b125393cdbfd075.tar.gz cpython-07de165d6ee05a3d3481579c5b125393cdbfd075.tar.bz2 |
Corrected comments on where settrace and setprofile are tested.
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/test/test_sys.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/test/test_sys.py b/Lib/test/test_sys.py index d55da62..9389254 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(): |