| Tor Norbye | 3a2425a | 2013-11-04 10:16:08 -0800 | [diff] [blame^] | 1 | def f(): |
| 2 | bytes, str = <warning descr="Local variable 'str' might be referenced before assignment">str</warning>, unicode #fail | ||||
| 3 | |||||
| 4 | class C(object): | ||||
| 5 | bytes, str = str, unicode #pass | ||||
| 6 | |||||
| 7 | bytes, str = str, unicode #pass | ||||