Python Documentation or reference to CPython source code
tested on current main: 1a9b10e
There are many examples and I picked one.
# the following is True in CPython and False in RustPython
print(
"á".zfill(5) == "000á",
)
RustPython's implementation did not calculate width correctly.