commit | 17fc44c9b3040538839f63d344b98ad5a904d520 | [log] [tgz] |
---|---|---|
author | Chris Jerdonek <chris.jerdonek@gmail.com> | Tue Nov 20 17:31:02 2012 -0800 |
committer | Chris Jerdonek <chris.jerdonek@gmail.com> | Tue Nov 20 17:31:02 2012 -0800 |
tree | ae2aa634c7133227e622996c010be273cce7fbe5 | |
parent | 39bdad813a2f07bd8c373e2c88b76467ef12832c [diff] [blame] |
Improve str() and object.__str__() documentation (issue #13538).
diff --git a/Lib/test/test_builtin.py b/Lib/test/test_builtin.py index 55fb63a..dab56ce 100644 --- a/Lib/test/test_builtin.py +++ b/Lib/test/test_builtin.py
@@ -1184,6 +1184,7 @@ self.assertRaises(TypeError, setattr, sys, 1, 'spam') self.assertRaises(TypeError, setattr) + # test_str(): see test_unicode.py and test_bytes.py for str() tests. def test_sum(self): self.assertEqual(sum([]), 0)