Issue17883: Update to assertIn to see why test fails on one buildbot.
diff --git a/Lib/test/test_tcl.py b/Lib/test/test_tcl.py
index 8db11dc..ea3d87d 100644
--- a/Lib/test/test_tcl.py
+++ b/Lib/test/test_tcl.py
@@ -148,7 +148,7 @@
             env.unset("TCL_LIBRARY")
             f = os.popen('%s -c "import Tkinter; print Tkinter"' % (unc_name,))
 
-        self.assertTrue('Tkinter.py' in f.read())
+        self.assertIn('Tkinter.py', f.read())
         # exit code must be zero
         self.assertEqual(f.close(), None)