diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2017-01-24 20:49:26 +0200 |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2017-01-24 20:49:26 +0200 |
commit | 663d9e9a93764f95259cdc43468c5cb13b0b7f9d (patch) | |
tree | d6b2964e5b2c9069b79097621f0aa5e814271693 /Lib/test | |
parent | b874e4b4ca3429d56543c872ab5bc4016e94f10c (diff) | |
download | cpython-663d9e9a93764f95259cdc43468c5cb13b0b7f9d.tar.gz |
Issue #29337: Fixed possible BytesWarning when compare the code objects.
Warnings could be emitted at compile time.
Diffstat (limited to 'Lib/test')
-rw-r--r-- | Lib/test/test_compile.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Lib/test/test_compile.py b/Lib/test/test_compile.py index 824e843914..4ea66a488f 100644 --- a/Lib/test/test_compile.py +++ b/Lib/test/test_compile.py @@ -634,6 +634,7 @@ if 1: f1 = ns['f1'] f2 = ns['f2'] self.assertIsNot(f1.__code__, f2.__code__) + self.assertNotEqual(f1.__code__, f2.__code__) self.check_constant(f1, const1) self.check_constant(f2, const2) self.assertEqual(repr(f1()), repr(const1)) @@ -642,6 +643,8 @@ if 1: check_different_constants(0, 0.0) check_different_constants(+0.0, -0.0) check_different_constants((0,), (0.0,)) + check_different_constants('a', b'a') + check_different_constants(('a',), (b'a',)) # check_different_constants() cannot be used because repr(-0j) is # '(-0-0j)', but when '(-0-0j)' is evaluated to 0j: we loose the sign. |