mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-08 09:05:52 +07:00
8 lines
218 B
Python
8 lines
218 B
Python
def f():
|
|
bytes, str = <warning descr="Local variable 'str' might be referenced before assignment">str</warning>, unicode #fail
|
|
|
|
class C(object):
|
|
bytes, str = str, unicode #pass
|
|
|
|
bytes, str = str, unicode #pass
|