diff options
| author | Ezio Melotti <none@none> | 2011-04-13 04:08:17 (GMT) |
|---|---|---|
| committer | Ezio Melotti <none@none> | 2011-04-13 04:08:17 (GMT) |
| commit | 42368f9b0cd9e9b00d617e7a52619b82b0101b3f (patch) | |
| tree | eb841dcdd60d333b43d2c551bf273fe45ee7863f /Lib/json/tests/test_speedups.py | |
| parent | c753305180db1e24029be7cfc4d8774167876c00 (diff) | |
| download | cpython-42368f9b0cd9e9b00d617e7a52619b82b0101b3f.zip cpython-42368f9b0cd9e9b00d617e7a52619b82b0101b3f.tar.gz cpython-42368f9b0cd9e9b00d617e7a52619b82b0101b3f.tar.bz2 | |
Remove unnecessary imports and use assertIs instead of assertTrue.
Diffstat (limited to 'Lib/json/tests/test_speedups.py')
| -rw-r--r-- | Lib/json/tests/test_speedups.py | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/Lib/json/tests/test_speedups.py b/Lib/json/tests/test_speedups.py index 6f34cac..b7c141f 100644 --- a/Lib/json/tests/test_speedups.py +++ b/Lib/json/tests/test_speedups.py @@ -1,4 +1,3 @@ -import decimal from unittest import TestCase, skipUnless from json import decoder, encoder, scanner @@ -12,12 +11,12 @@ except ImportError: class TestSpeedups(TestCase): def test_scanstring(self): self.assertEqual(decoder.scanstring.__module__, "_json") - self.assertTrue(decoder.scanstring is decoder.c_scanstring) + self.assertIs(decoder.scanstring, decoder.c_scanstring) def test_encode_basestring_ascii(self): self.assertEqual(encoder.encode_basestring_ascii.__module__, "_json") - self.assertTrue(encoder.encode_basestring_ascii is - encoder.c_encode_basestring_ascii) + self.assertIs(encoder.encode_basestring_ascii, + encoder.c_encode_basestring_ascii) class TestDecode(TestCase): def test_make_scanner(self): |
