mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 14:23:28 +07:00
16 lines
300 B
Python
16 lines
300 B
Python
class Manager:
|
|
pass
|
|
|
|
class Programmer:
|
|
def jobsDoneCount(self):
|
|
pass
|
|
|
|
class EmployeeTest:
|
|
def firstMethod(self):
|
|
self.deadBeat = Manager()
|
|
|
|
def secondMethod(self):
|
|
self.deadBeat = Programmer()
|
|
self.deadBeat.jobsDoneCount()
|
|
# <ref>
|