We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
id(a) != id(a * 1)
tuple
CPython:
>>> a = (1, 2) >>> id(a), id(a * 1) (4379030656, 4379030656)
RustPython:
>>>>> a = (1, 2) >>>>> id(a), id(a * 1) (140352989490368, 140352989503168)
This is also covered by seq_tests.test_repeat which is now marked as unittest.expectedFailure.
seq_tests.test_repeat
unittest.expectedFailure
Feature
CPython:
RustPython:
This is also covered by
seq_tests.test_repeatwhich is now marked asunittest.expectedFailure.