id() for bytes stays the same after * 1, refs #2840

This commit is contained in:
sobolevn
2021-08-11 21:53:52 +03:00
parent 03a9d6058b
commit 37f66dd998
2 changed files with 36 additions and 6 deletions

View File

@@ -623,4 +623,26 @@ assert bytes(A()) == b"bytess"
# Issue #2125
b = b'abc'
assert bytes(b) is b
assert bytes(b) is b
# Regression to
# https://github.com/RustPython/RustPython/issues/2840
a = b'123abc!?'
assert id(a) == id(a)
assert id(a) != id(a * -1)
assert id(a) != id(a * 0)
assert id(a) == id(a * 1) # only case when `id` stays the same
assert id(a) != id(a * 2)
class SubBytes(bytes):
pass
b = SubBytes(b'0123abc*&')
assert id(b) == id(b)
assert id(b) != id(b * -1)
assert id(b) != id(b * 0)
assert id(b) != id(b * 1)
assert id(b) != id(b * 2)

View File

@@ -21,8 +21,8 @@ use crate::slots::{BufferProtocol, Comparable, Hashable, Iterable, PyComparisonO
use crate::utils::Either;
use crate::vm::VirtualMachine;
use crate::{
IntoPyObject, PyClassImpl, PyComparisonValue, PyContext, PyIterable, PyObjectRef, PyRef,
PyResult, PyValue, TryFromObject, TypeProtocol,
IdProtocol, IntoPyObject, PyClassImpl, PyComparisonValue, PyContext, PyIterable, PyObjectRef,
PyRef, PyResult, PyValue, TryFromObject, TypeProtocol,
};
use crate::builtins::memory::{BufferOptions, PyBuffer};
@@ -430,11 +430,19 @@ impl PyBytes {
#[pymethod(name = "__mul__")]
#[pymethod(name = "__rmul__")]
fn mul(&self, value: isize, vm: &VirtualMachine) -> PyResult<PyBytes> {
if value > 0 && self.inner.len() as isize > std::isize::MAX / value {
fn mul(zelf: PyRef<Self>, value: isize, vm: &VirtualMachine) -> PyResult<PyRef<Self>> {
if value > 0 && zelf.inner.len() as isize > std::isize::MAX / value {
return Err(vm.new_overflow_error("repeated bytes are too long".to_owned()));
}
Ok(self.inner.repeat(value).into())
if value == 1 && zelf.class().is(&vm.ctx.types.bytes_type) {
// Special case: when some `bytes` is multiplied by `1`,
// nothing really happens, we need to return an object itself
// with the same `id()` to be compatible with CPython.
// This only works for `bytes` itself, not its subclasses.
return Ok(zelf);
}
let bytes: PyBytes = zelf.inner.repeat(value).into();
Ok(bytes.into_ref(vm))
}
#[pymethod(name = "__mod__")]