Coverage for C:\Users\tuhe\AppData\Roaming\Python\Python38\site-packages\wcwidth\unicode_versions.py : 50%

Hot-keys on this page
r m x p toggle line displays
j k next/prev highlighted chunk
0 (zero) top of page
1 (one) first highlighted chunk
1"""
2Exports function list_versions() for unicode version level support.
4This code generated by bin/update-tables.py on 2020-06-23 16:03:21.350604.
5"""
8def list_versions():
9 """
10 Return Unicode version levels supported by this module release.
12 Any of the version strings returned may be used as keyword argument
13 ``unicode_version`` to the ``wcwidth()`` family of functions.
15 :returns: Supported Unicode version numbers in ascending sorted order.
16 :rtype: list[str]
17 """
18 return (
19 "4.1.0",
20 "5.0.0",
21 "5.1.0",
22 "5.2.0",
23 "6.0.0",
24 "6.1.0",
25 "6.2.0",
26 "6.3.0",
27 "7.0.0",
28 "8.0.0",
29 "9.0.0",
30 "10.0.0",
31 "11.0.0",
32 "12.0.0",
33 "12.1.0",
34 "13.0.0",
35 )