https://github.com/python/cpython/commit/6e0ba93dfa625fa329a9361062de8efc1a12c990 commit: 6e0ba93dfa625fa329a9361062de8efc1a12c990 branch: 3.12 author: Miss Islington (bot) <[email protected]> committer: sobolevn <[email protected]> date: 2024-07-17T07:16:25Z summary:
[3.12] gh-121842: Improve coverage of `PyBytes_FromStringAndSize` (GH-121843) (#121894) gh-121842: Improve coverage of `PyBytes_FromStringAndSize` (GH-121843) (cherry picked from commit f6c7d8d79c4e17167af98f2e0cb4b1e55d7b5d3c) Co-authored-by: sobolevn <[email protected]> files: M Lib/test/test_capi/test_bytes.py diff --git a/Lib/test/test_capi/test_bytes.py b/Lib/test/test_capi/test_bytes.py index bb5d724ff187d4..c692ee82d04283 100644 --- a/Lib/test/test_capi/test_bytes.py +++ b/Lib/test/test_capi/test_bytes.py @@ -52,6 +52,8 @@ def test_fromstringandsize(self): self.assertEqual(fromstringandsize(b'abc'), b'abc') self.assertEqual(fromstringandsize(b'abc', 2), b'ab') self.assertEqual(fromstringandsize(b'abc\0def'), b'abc\0def') + self.assertEqual(fromstringandsize(b'a'), b'a') + self.assertEqual(fromstringandsize(b'a', 1), b'a') self.assertEqual(fromstringandsize(b'', 0), b'') self.assertEqual(fromstringandsize(NULL, 0), b'') self.assertEqual(len(fromstringandsize(NULL, 3)), 3) _______________________________________________ Python-checkins mailing list -- [email protected] To unsubscribe send an email to [email protected] https://mail.python.org/mailman3/lists/python-checkins.python.org/ Member address: [email protected]
