[Python-checkins] r83141 - python/branches/py3k/Lib/test/test_sys.py

alexander.belopolsky python-checkins at python.org
Sun Jul 25 17:05:42 CEST 2010


Author: alexander.belopolsky
Date: Sun Jul 25 17:05:42 2010
New Revision: 83141

Log:
Corrected comments on where settrace and setprofile are tested.

Modified:
   python/branches/py3k/Lib/test/test_sys.py

Modified: python/branches/py3k/Lib/test/test_sys.py
==============================================================================
--- python/branches/py3k/Lib/test/test_sys.py	(original)
+++ python/branches/py3k/Lib/test/test_sys.py	Sun Jul 25 17:05:42 2010
@@ -179,8 +179,8 @@
         # 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():


More information about the Python-checkins mailing list