diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2023-08-16 12:29:08 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-08-16 12:29:08 (GMT) |
commit | 9c8dfcec645b233dd6f36c286a7c5525c5d713e2 (patch) | |
tree | 2a0705468eac7a39b7ef30e903b2a14dc7b755e2 /Lib/test/test_bytes.py | |
parent | 72534ca85c64d4d33a9cf30492e037be05140fd2 (diff) | |
download | cpython-9c8dfcec645b233dd6f36c286a7c5525c5d713e2.zip cpython-9c8dfcec645b233dd6f36c286a7c5525c5d713e2.tar.gz cpython-9c8dfcec645b233dd6f36c286a7c5525c5d713e2.tar.bz2 |
[3.12] gh-107178: Add the C API tests for the Abstract Objects Layer (GH-107179) (#107728)
Cover all the Mapping Protocol, almost all the Sequence Protocol
(except PySequence_Fast) and a part of the Object Protocol.
Move existing tests to Lib/test/test_capi/test_abstract.py and
Modules/_testcapi/abstract.c.
Add also tests for PyDict C API..
(cherry picked from commit 16c9415fba4972743f1944ebc44946e475e68bc4)
Diffstat (limited to 'Lib/test/test_bytes.py')
-rw-r--r-- | Lib/test/test_bytes.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_bytes.py b/Lib/test/test_bytes.py index 7c62b72..afd506f 100644 --- a/Lib/test/test_bytes.py +++ b/Lib/test/test_bytes.py @@ -1354,7 +1354,7 @@ class ByteArrayTest(BaseBytesTest, unittest.TestCase): except ValueError: pass try: - setitem(b, 0, None) + setitem(b, 0, object()) self.fail("Didn't raise TypeError") except TypeError: pass |