pocketpy/tests/830_unicodedata.py
zhs628 fc991ab697
Increase coverage 2025 12 01 (#412)
* 通过引发py_call错误覆盖相关调用者的ok==false分支

* Revert "通过引发py_call错误覆盖相关调用者的ok==false分支"

This reverts commit 36dc0b5d81a02a83dfdeca2d4d6d265f5f793b4b.

* add test

* rename test files

* fix bugs

* fix bugs
2025-12-04 21:01:29 +08:00

18 lines
409 B
Python
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

from unicodedata import east_asian_width
# full width
assert east_asian_width("") == "F"
# half width
assert east_asian_width("") == "H"
# narrow
assert east_asian_width("a") == "Na"
# wide
assert east_asian_width("") == "W"
assert east_asian_width("🥕") == "W"
assert east_asian_width("") == "W"
# ambiguous
assert east_asian_width("°") == "A"
# neutral
assert east_asian_width("\n") == "N"