summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_bytes.py
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2016-03-30 18:01:45 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2016-03-30 18:01:45 (GMT)
commitf39c0ac62f90842b790a41f1b0ddd51a6e3d8dc2 (patch)
tree28f2b61a6323d9b443f85de960f8b95efeec7376 /Lib/test/test_bytes.py
parentab479c49d31be03e85b824b8444b474b28e6db71 (diff)
parent8dc2ec1513e90a8d23394f1c4ec3a07c4e057610 (diff)
downloadcpython-f39c0ac62f90842b790a41f1b0ddd51a6e3d8dc2.zip
cpython-f39c0ac62f90842b790a41f1b0ddd51a6e3d8dc2.tar.gz
cpython-f39c0ac62f90842b790a41f1b0ddd51a6e3d8dc2.tar.bz2
Issue #26492: Added additional tests for exhausted iterators of mutable sequences.
Diffstat (limited to 'Lib/test/test_bytes.py')
-rw-r--r--Lib/test/test_bytes.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/Lib/test/test_bytes.py b/Lib/test/test_bytes.py
index 90bcc42..69e5bc9 100644
--- a/Lib/test/test_bytes.py
+++ b/Lib/test/test_bytes.py
@@ -17,6 +17,7 @@ import unittest
import test.support
import test.string_tests
import test.buffer_tests
+import test.list_tests
from test.support import bigaddrspacetest, MAX_Py_ssize_t
@@ -1418,6 +1419,7 @@ class ByteArrayTest(BaseBytesTest, unittest.TestCase):
b[:] = data
self.assertEqual(list(it), [])
+ test_exhausted_iterator = test.list_tests.CommonTest.test_exhausted_iterator
class AssortedBytesTest(unittest.TestCase):
#