Author: Ronan Lamy <[email protected]>
Branch: py3.6
Changeset: r96977:a822ed1ebccb
Date: 2019-07-13 14:32 +0000
http://bitbucket.org/pypy/pypy/changeset/a822ed1ebccb/
Log: Merged in ykiprov/pypy/remove_array_with_char_test (pull request
#651)
removed array of chars test as this was removed in python3
diff --git a/pypy/module/array/test/test_array.py
b/pypy/module/array/test/test_array.py
--- a/pypy/module/array/test/test_array.py
+++ b/pypy/module/array/test/test_array.py
@@ -892,13 +892,6 @@
assert repr(mya('i', [1, 2, 3])) == "array('i', [1, 2, 3])"
assert repr(mya('i', (1, 2, 3))) == "array('i', [1, 2, 3])"
- def test_array_of_chars_equality(self):
- input_bytes = '\x01\x63a\x00!'
- a = self.array('c', input_bytes)
- b = self.array('c', input_bytes)
- b.byteswap()
- assert a == b
-
def test_unicode_outofrange(self):
input_unicode = u'\x01\u263a\x00\ufeff'
a = self.array('u', input_unicode)
_______________________________________________
pypy-commit mailing list
[email protected]
https://mail.python.org/mailman/listinfo/pypy-commit