mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-14 18:05:27 +07:00
14 lines
227 B
Python
14 lines
227 B
Python
import sys
|
|
|
|
var = (sys.platform == 'win32')
|
|
|
|
class A():
|
|
def __init__(self):
|
|
self.<caret>a = None
|
|
|
|
if var:
|
|
def func(self):
|
|
self.a = ""
|
|
else:
|
|
def func(self):
|
|
self.a = () |