mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-24 00:50:53 +07:00
18 lines
255 B
Python
18 lines
255 B
Python
# coding=utf-8
|
|
from abc import ABCMeta, abstractmethod
|
|
|
|
|
|
class A:
|
|
__metaclass__ = ABCMeta
|
|
|
|
@abstractmethod
|
|
def m(self, x):
|
|
u"""Юникод"""
|
|
pass
|
|
|
|
|
|
class B(A):
|
|
def m(self, x):
|
|
u"""Юникод"""
|
|
return x
|