mirror of
https://github.com/micropython/micropython.git
synced 2026-01-07 04:30:24 +01:00
py/objstr: Support '{:08}'.format("Jan") like Python 3.10.
The new test has an .exp file, because it is not compatible with Python 3.9 and lower. See CPython version of the issue at https://bugs.python.org/issue27772 Signed-off-by: Jeff Epler <jepler@gmail.com>
This commit is contained in:
committed by
Damien George
parent
5e506567a3
commit
037b2c72a1
4
tests/basics/string_format_cp310.py.exp
Normal file
4
tests/basics/string_format_cp310.py.exp
Normal file
@@ -0,0 +1,4 @@
|
||||
{:0s} >ab<
|
||||
{:06s} >ab0000<
|
||||
{:<06s} >ab0000<
|
||||
{:>06s} >0000ab<
|
||||
Reference in New Issue
Block a user