mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-21 13:20:56 +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.
15 lines
186 B
Python
15 lines
186 B
Python
from abc import abstractmethod
|
|
|
|
|
|
class Abstract:
|
|
@abstractmethod
|
|
def foo(self):
|
|
pass
|
|
|
|
@abstractmethod
|
|
def bar(self):
|
|
pass
|
|
|
|
|
|
class Impl(Abstract):
|
|
pass |