diff options
author | Andrew Svetlov <andrew.svetlov@gmail.com> | 2012-12-23 10:51:40 (GMT) |
---|---|---|
committer | Andrew Svetlov <andrew.svetlov@gmail.com> | 2012-12-23 10:51:40 (GMT) |
commit | f347cf903c61fec0fbf2a5528ef9b88f76e8977d (patch) | |
tree | 2d5bbfec9bbc25ebb096f8d0e54980a95b658754 /Lib/test/test_builtin.py | |
parent | 73b969ec70ff4d422bff34d63cfb220cfac96779 (diff) | |
parent | 8e42e8a0c6d202e12a918494ed506252ff361187 (diff) | |
download | cpython-f347cf903c61fec0fbf2a5528ef9b88f76e8977d.zip cpython-f347cf903c61fec0fbf2a5528ef9b88f76e8977d.tar.gz cpython-f347cf903c61fec0fbf2a5528ef9b88f76e8977d.tar.bz2 |
merge heads
Diffstat (limited to 'Lib/test/test_builtin.py')
-rw-r--r-- | Lib/test/test_builtin.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Lib/test/test_builtin.py b/Lib/test/test_builtin.py index 19d7c70..bf005c5 100644 --- a/Lib/test/test_builtin.py +++ b/Lib/test/test_builtin.py @@ -1172,6 +1172,8 @@ class BuiltinTest(unittest.TestCase): # Check stdin/stdout error handler is used when invoking GNU readline self.check_input_tty("prompté", b"quux\xe9", "ascii") + # test_int(): see test_int.py for tests of built-in function int(). + def test_repr(self): self.assertEqual(repr(''), '\'\'') self.assertEqual(repr(0), '0') |