mirror of
https://github.com/openwrt/packages.git
synced 2025-12-23 11:01:25 +00:00
python-charset-normalizer: Update to 3.3.2
This also updates the test.sh script to use an assert. Signed-off-by: Jeffery To <jeffery.to@gmail.com>
This commit is contained in:
@@ -2,11 +2,12 @@
|
||||
|
||||
[ "$1" = python3-charset-normalizer ] || exit 0
|
||||
|
||||
python3 - << EOF
|
||||
import sys
|
||||
python3 - << 'EOF'
|
||||
|
||||
from charset_normalizer import from_bytes
|
||||
s = 'Bсеки човек има право на образование.'
|
||||
byte_str = s.encode('cp1251')
|
||||
result = from_bytes(byte_str).best()
|
||||
sys.exit(0 if str(result) == s else 1)
|
||||
assert str(result) == s
|
||||
|
||||
EOF
|
||||
|
||||
Reference in New Issue
Block a user