##// END OF EJS Templates
typing: fix forward reference in _Tlocalstr type bound...
Yuya Nishihara -
r44075:3364a15f default
parent child Browse files
Show More
@@ -35,7 +35,7 b' if not globals(): # hide this from non-'
35 for t in (Any, Callable, List, Text, Type, Union):
35 for t in (Any, Callable, List, Text, Type, Union):
36 assert t
36 assert t
37
37
38 _Tlocalstr = TypeVar('_Tlocalstr', bound=localstr)
38 _Tlocalstr = TypeVar('_Tlocalstr', bound='localstr')
39
39
40 charencode = policy.importmod('charencode')
40 charencode = policy.importmod('charencode')
41
41
General Comments 0
You need to be logged in to leave comments. Login now