Coverage for /pythoncovmergedfiles/medio/medio/usr/local/lib/python3.11/site-packages/idna/__init__.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  

1from .core import ( 

2 IDNABidiError, 

3 IDNAError, 

4 InvalidCodepoint, 

5 InvalidCodepointContext, 

6 alabel, 

7 check_bidi, 

8 check_hyphen_ok, 

9 check_initial_combiner, 

10 check_label, 

11 check_nfc, 

12 decode, 

13 encode, 

14 ulabel, 

15 uts46_remap, 

16 valid_contextj, 

17 valid_contexto, 

18 valid_label_length, 

19 valid_string_length, 

20) 

21from .intranges import intranges_contain 

22from .package_data import __version__ 

23 

24__all__ = [ 

25 "__version__", 

26 "IDNABidiError", 

27 "IDNAError", 

28 "InvalidCodepoint", 

29 "InvalidCodepointContext", 

30 "alabel", 

31 "check_bidi", 

32 "check_hyphen_ok", 

33 "check_initial_combiner", 

34 "check_label", 

35 "check_nfc", 

36 "decode", 

37 "encode", 

38 "intranges_contain", 

39 "ulabel", 

40 "uts46_remap", 

41 "valid_contextj", 

42 "valid_contexto", 

43 "valid_label_length", 

44 "valid_string_length", 

45]