mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-04-18 20:41:22 +07:00
7 lines
320 B
Python
7 lines
320 B
Python
f = open("file.txt")
|
|
f.writelines("a") # OK
|
|
f.<warning descr="Unresolved attribute reference 'writeliness' for class 'BinaryIO'">writeliness</warning>("a")
|
|
|
|
f = open("file.txt", "rb")
|
|
f.writelines("a") # OK
|
|
f.<warning descr="Unresolved attribute reference 'writeliness' for class 'BinaryIO'">writeliness</warning>("a") |