All patches and comments are welcome. Please squash your changes to logical
commits before using git-format-patch and git-send-email to
patches@git.madduck.net.
If you'd read over the Git project's submission guidelines and adhered to them,
I'd be especially grateful.
1 """Generates a width table for Unicode characters.
3 This script generates a width table for Unicode characters that are not
4 narrow (width 1). The table is written to src/black/_width_table.py (note
5 that although this file is generated, it is checked into Git) and is used
6 by the char_width() function in src/black/strings.py.
8 You should run this script when you upgrade wcwidth, which is expected to
9 happen when a new Unicode version is released. The generated table contains
10 the version of wcwidth and Unicode that it was generated for.
12 In order to run this script, you need to install the latest version of wcwidth.
13 You can do this by running:
15 pip install -U wcwidth
19 from os.path import basename, dirname, join
20 from typing import Iterable, Tuple
25 def make_width_table() -> Iterable[Tuple[int, int, int]]:
29 for codepoint in range(0, sys.maxunicode + 1):
30 width = wcwidth.wcwidth(chr(codepoint))
32 # Ignore narrow characters along with zero-width characters so that
33 # they are treated as single-width. Note that treating zero-width
34 # characters as single-width is consistent with the heuristics built
35 # on top of str.isascii() in the str_width() function in strings.py.
37 if start_codepoint < 0:
38 start_codepoint = codepoint
40 elif width != range_width or codepoint != end_codepoint + 1:
41 yield (start_codepoint, end_codepoint, range_width)
42 start_codepoint = codepoint
44 end_codepoint = codepoint
45 if start_codepoint >= 0:
46 yield (start_codepoint, end_codepoint, range_width)
50 table_path = join(dirname(__file__), "..", "src", "black", "_width_table.py")
51 with open(table_path, "w") as f:
52 f.write(f"""# Generated by {basename(__file__)}
53 # wcwidth {wcwidth.__version__}
54 # Unicode {wcwidth.list_versions()[-1]}
55 from typing import Final, List, Tuple
57 WIDTH_TABLE: Final[List[Tuple[int, int, int]]] = [
59 for triple in make_width_table():
60 f.write(f" {triple!r},\n")
64 if __name__ == "__main__":