diff options
author | Nikita Sobolev <mail@sobolevn.me> | 2021-08-13 10:36:22 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-08-13 10:36:22 (GMT) |
commit | a2ce538e16d5e3a6168704366bdd7a8c5af29881 (patch) | |
tree | e8a7984f05fcf962e9bb2a66deba562ff4896de8 /Misc/NEWS.d/next/Tests | |
parent | 7bf28cbb4bf37fa6bdfc2d3f8a3939066b3f8f22 (diff) | |
download | cpython-a2ce538e16d5e3a6168704366bdd7a8c5af29881.zip cpython-a2ce538e16d5e3a6168704366bdd7a8c5af29881.tar.gz cpython-a2ce538e16d5e3a6168704366bdd7a8c5af29881.tar.bz2 |
bpo-44891: Tests `id` preserving on `* 1` for `str` and `bytes` (GH-27745)
Co-authored-by: Ćukasz Langa <lukasz@langa.pl>
Diffstat (limited to 'Misc/NEWS.d/next/Tests')
-rw-r--r-- | Misc/NEWS.d/next/Tests/2021-08-13-12-11-06.bpo-44891.T9_mBT.rst | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Tests/2021-08-13-12-11-06.bpo-44891.T9_mBT.rst b/Misc/NEWS.d/next/Tests/2021-08-13-12-11-06.bpo-44891.T9_mBT.rst new file mode 100644 index 0000000..2f83389 --- /dev/null +++ b/Misc/NEWS.d/next/Tests/2021-08-13-12-11-06.bpo-44891.T9_mBT.rst @@ -0,0 +1,2 @@ +Tests were added to clarify :func:`id` is preserved when ``obj * 1`` is used +on :class:`str` and :class:`bytes` objects. Patch by Nikita Sobolev. |