summaryrefslogtreecommitdiffstats
path: root/Lib
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2017-01-24 18:52:43 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2017-01-24 18:52:43 (GMT)
commit4102d25b7eef868519b4c9b398690313cd36ef66 (patch)
tree47ced042ecd0a2729c651906339b9f945960f030 /Lib
parent574ff0680fbaeec1033f2301d527c4c784921ccb (diff)
parent713640c4c95df999957b5366fb8cd7f443906858 (diff)
downloadcpython-4102d25b7eef868519b4c9b398690313cd36ef66.zip
cpython-4102d25b7eef868519b4c9b398690313cd36ef66.tar.gz
cpython-4102d25b7eef868519b4c9b398690313cd36ef66.tar.bz2
Issue #29337: Fixed possible BytesWarning when compare the code objects.
Warnings could be emitted at compile time.
Diffstat (limited to 'Lib')
-rw-r--r--Lib/test/test_compile.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/Lib/test/test_compile.py b/Lib/test/test_compile.py
index 409ec86..da1db15 100644
--- a/Lib/test/test_compile.py
+++ b/Lib/test/test_compile.py
@@ -637,6 +637,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))
@@ -645,6 +646,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.