mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-14 18:05:27 +07:00
Every of them was inserted after statement list so the last method becomes the first. The problem is fixed by reverting writing order.
21 lines
244 B
Python
21 lines
244 B
Python
from abc import abstractmethod
|
|
|
|
|
|
class Abstract:
|
|
@abstractmethod
|
|
def foo(self):
|
|
pass
|
|
|
|
@abstractmethod
|
|
def bar(self):
|
|
pass
|
|
|
|
|
|
class Impl(Abstract):
|
|
def foo(self):
|
|
pass
|
|
|
|
def bar(self):
|
|
pass
|
|
|