diff options
author | Christian Clauss <cclauss@me.com> | 2025-02-18 10:01:09 +0100 |
---|---|---|
committer | Christian Clauss <cclauss@me.com> | 2025-02-25 13:02:49 +0100 |
commit | dc2fcfcc5511a371ff684f7d7772e7a7b479246d (patch) | |
tree | 72ba38184b3291afd41200da2a8a482868308a6a /tests/unicode/unicode.py | |
parent | 3f0dd13d931c88a759a779853dfeaee566f0e79a (diff) | |
download | micropython-dc2fcfcc5511a371ff684f7d7772e7a7b479246d.tar.gz micropython-dc2fcfcc5511a371ff684f7d7772e7a7b479246d.zip |
all: Upgrade to ruff v0.9.6.
Signed-off-by: Christian Clauss <cclauss@me.com>
Diffstat (limited to 'tests/unicode/unicode.py')
-rw-r--r-- | tests/unicode/unicode.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/unicode/unicode.py b/tests/unicode/unicode.py index 072e049fde..58d406e63e 100644 --- a/tests/unicode/unicode.py +++ b/tests/unicode/unicode.py @@ -5,7 +5,7 @@ for i in range(len(s)): # Test all three forms of Unicode escape, and # all blocks of UTF-8 byte patterns -s = "a\xA9\xFF\u0123\u0800\uFFEE\U0001F44C" +s = "a\xa9\xff\u0123\u0800\uffee\U0001f44c" for i in range(-len(s), len(s)): print("s[%d]: %s %X" % (i, s[i], ord(s[i]))) print("s[:%d]: %d chars, '%s'" % (i, len(s[:i]), s[:i])) |