Coverage for /pythoncovmergedfiles/medio/medio/usr/local/lib/python3.11/site-packages/wcwidth/unicode_versions.py: 100%

Shortcuts on this page

r m x   toggle line displays

j k   next/prev highlighted chunk

0   (zero) top of page

1   (one) first highlighted chunk

4 statements  

1""" 

2Exports function list_versions() for unicode version level support. 

3 

4This code generated by wcwidth/bin/update-tables.py on 2026-01-27 00:41:01 UTC. 

5""" 

6 

7from __future__ import annotations 

8 

9 

10def list_versions() -> tuple[str, ...]: 

11 """ 

12 Return Unicode version levels supported by this module release. 

13 

14 .. versionchanged:: 0.5.0 

15 Now returns a single-element tuple containing only the latest version. 

16 

17 :returns: Supported Unicode version numbers in ascending sorted order. 

18 """ 

19 return ( 

20 "17.0.0", 

21 )