From 4296ef087269f0a087959ae230c60ac528c051fa Mon Sep 17 00:00:00 2001 From: Lephenixnoir Date: Wed, 3 Aug 2022 21:52:58 +0100 Subject: [PATCH] fxsdk: adjustment for #9 --- fxconv/fxconv.py | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/fxconv/fxconv.py b/fxconv/fxconv.py index e3f9161..e3321f5 100644 --- a/fxconv/fxconv.py +++ b/fxconv/fxconv.py @@ -146,21 +146,21 @@ LIBIMG_FLAG_RO = 2 FX_CHARSETS = { # Digits 0...9 - "numeric": [ (ord('0'), 10) ], + "numeric": [ (ord('0'), 10) ], # Uppercase letters A...Z - "upper": [ (ord('A'), 26) ], + "upper": [ (ord('A'), 26) ], # Upper and lowercase letters A..Z, a..z - "alpha": [ (ord('A'), 26), (ord('a'), 26) ], + "alpha": [ (ord('A'), 26), (ord('a'), 26) ], # Letters and digits A..Z, a..z, 0..9 - "alnum": [ (ord('A'), 26), (ord('a'), 26), (ord('0'), 10) ], + "alnum": [ (ord('A'), 26), (ord('a'), 26), (ord('0'), 10) ], # All printable characters from 0x20 to 0x7e - "print": [ (0x20, 95) ], + "print": [ (0x20, 95) ], # All 128 ASCII characters - "ascii": [ (0x00, 128) ], + "ascii": [ (0x00, 128) ], # Custom Unicode block intervals - "unicode": [], - # All 256 ASCII characters (128 first characters as per ascii + 128 extended characters) - "extascii": [ (0x00, 256) ], + "unicode": [], + # Single block 0x00-0xff (does not imply single-byte encoding) + "256chars": [ (0x00, 256) ], } #