execution of functions or classes
This applies to writing classes or functions, but not to their implementation. For example, maybe I am creating a class:
class Foo(object):
def bar(self):
pass
def tank(self):
pass
, . , . :
class Foo(object):
def bar(self):
raise NotImplementedError
def tank(self):
raise NotImplementedError
, , , .