blob: 9a882a3575aeecaf16afd0d9dda1c5093ebd9c1a [file] [log] [blame]
Tor Norbye3a2425a2013-11-04 10:16:08 -08001a = <warning descr="Python version 3.0, 3.1, 3.2 do not support a 'U' prefix">u</warning>"String"
2
3# python 3.3
4
5a = <warning descr="Python version 3.0, 3.1, 3.2 do not support a 'U' prefix">u</warning>""
6a = r""
7a = <warning descr="Python version 2.4, 2.5 do not support a 'B' prefix">b</warning>""
8a = <error descr="Python version 2.7 does not support a 'RB' prefix"><warning descr="Python version 2.4, 2.5, 2.6, 2.7, 3.0, 3.1, 3.2 do not support a 'RB' prefix">rb</warning></error>""
9a = <warning descr="Python version 2.4, 2.5, 3.0 do not support a 'BR' prefix">br</warning>""
10
11# python 3.2, 3.1
12
13a = r""
14a = <warning descr="Python version 2.4, 2.5 do not support a 'B' prefix">b</warning>""
15a = <warning descr="Python version 2.4, 2.5, 3.0 do not support a 'BR' prefix">br</warning>""
16
17# python 3.0
18
19a = r""
20a = <warning descr="Python version 2.4, 2.5 do not support a 'B' prefix">b</warning>""
21
22# python 2.7, 2.6
23
24a = <warning descr="Python version 3.0, 3.1, 3.2 do not support a 'U' prefix">u</warning>""
25a = r""
Tor Norbye814f8292014-03-06 17:27:18 -080026a = <warning descr="Python version 3.0, 3.1, 3.2, 3.3, 3.4 do not support a 'UR' prefix">ur</warning>""
Tor Norbye3a2425a2013-11-04 10:16:08 -080027a = <warning descr="Python version 2.4, 2.5 do not support a 'B' prefix">b</warning>""
28a = <warning descr="Python version 2.4, 2.5, 3.0 do not support a 'BR' prefix">br</warning>""
29
30# python 2.5
31
32a = <warning descr="Python version 3.0, 3.1, 3.2 do not support a 'U' prefix">u</warning>""
33a = r""
Tor Norbye814f8292014-03-06 17:27:18 -080034a = <warning descr="Python version 3.0, 3.1, 3.2, 3.3, 3.4 do not support a 'UR' prefix">ur</warning>""
Tor Norbye3a2425a2013-11-04 10:16:08 -080035
36# combined
37b = <warning descr="Python version 3.0, 3.1, 3.2 do not support a 'U' prefix">u</warning>"" <warning descr="Python version 2.4, 2.5 do not support a 'B' prefix">b</warning>""
38
39# never was available
Tor Norbye814f8292014-03-06 17:27:18 -080040a = <error descr="Python version 2.7 does not support a 'RR' prefix"><warning descr="Python version 2.4, 2.5, 2.6, 2.7, 3.0, 3.1, 3.2, 3.3, 3.4 do not support a 'RR' prefix">rr</warning></error>""
41a = <error descr="Python version 2.7 does not support a 'BB' prefix"><warning descr="Python version 2.4, 2.5, 2.6, 2.7, 3.0, 3.1, 3.2, 3.3, 3.4 do not support a 'BB' prefix">bb</warning></error>""
42a = <error descr="Python version 2.7 does not support a 'UU' prefix"><warning descr="Python version 2.4, 2.5, 2.6, 2.7, 3.0, 3.1, 3.2, 3.3, 3.4 do not support a 'UU' prefix">uu</warning></error>""