mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-28 21:30:23 +07:00
Update test data and reduce manual language level setup GitOrigin-RevId: d6ddec1b2b29a2b7f1a34cfb5982fd975de78d65
15 lines
249 B
Python
15 lines
249 B
Python
from abc import ABCMeta, abstractproperty
|
|
|
|
class Upper(object):
|
|
__metaclass__ = ABCMeta
|
|
|
|
@abstractproperty
|
|
def prop(self):
|
|
pass
|
|
|
|
@prop.setter
|
|
def prop(self, prop):
|
|
pass
|
|
|
|
def foo(self):
|
|
print(self.prop) |