[Python-checkins] r83144 - in python/branches/release31-maint: Lib/test/test_profilehooks.py Lib/test/test_sys.py Lib/test/test_trace.py

alexander.belopolsky python-checkins at python.org
Sun Jul 25 17:23:24 CEST 2010


Author: alexander.belopolsky
Date: Sun Jul 25 17:23:24 2010
New Revision: 83144

Log:
Reverted r83143: svnmerge failed to add new names

Added:
   python/branches/release31-maint/Lib/test/test_profilehooks.py
      - copied unchanged from r83142, /python/branches/release31-maint/Lib/test/test_profilehooks.py
   python/branches/release31-maint/Lib/test/test_trace.py
      - copied unchanged from r83142, /python/branches/release31-maint/Lib/test/test_trace.py
Modified:
   python/branches/release31-maint/   (props changed)
   python/branches/release31-maint/Lib/test/test_sys.py

Modified: python/branches/release31-maint/Lib/test/test_sys.py
==============================================================================
--- python/branches/release31-maint/Lib/test/test_sys.py	(original)
+++ python/branches/release31-maint/Lib/test/test_sys.py	Sun Jul 25 17:23:24 2010
@@ -164,8 +164,8 @@
         # 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)


More information about the Python-checkins mailing list