summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_sys.py
diff options
context:
space:
mode:
authorAlexander Belopolsky <alexander.belopolsky@gmail.com>2010-07-25 15:23:24 (GMT)
committerAlexander Belopolsky <alexander.belopolsky@gmail.com>2010-07-25 15:23:24 (GMT)
commit85edadb8ab9b7219aaaeaa16a442f672b80e03aa (patch)
treed25871a0f8d556fbd7a819e61bcae61f32493b1a /Lib/test/test_sys.py
parent6161077c93603e05790440c391bb55f381fe1443 (diff)
downloadcpython-85edadb8ab9b7219aaaeaa16a442f672b80e03aa.zip
cpython-85edadb8ab9b7219aaaeaa16a442f672b80e03aa.tar.gz
cpython-85edadb8ab9b7219aaaeaa16a442f672b80e03aa.tar.bz2
Reverted r83143: svnmerge failed to add new names
Diffstat (limited to 'Lib/test/test_sys.py')
-rw-r--r--Lib/test/test_sys.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/test/test_sys.py b/Lib/test/test_sys.py
index 398243a..24f17fb 100644
--- a/Lib/test/test_sys.py
+++ b/Lib/test/test_sys.py
@@ -164,8 +164,8 @@ class SysModuleTest(unittest.TestCase):
# can't check more than the type, as the user might have changed it
self.assertTrue(isinstance(sys.getdefaultencoding(), str))
- # testing sys.settrace() is done in test_sys_settrace.py
- # testing sys.setprofile() is done in test_sys_setprofile.py
+ # testing sys.settrace() is done in test_trace.py
+ # testing sys.setprofile() is done in test_profile.py
def test_setcheckinterval(self):
self.assertRaises(TypeError, sys.setcheckinterval)