Is it possible to create a keyword in python that's equivalent to inheriting a class?
So given class:
class Hello:
  pass
I could write
keyword Custom:
 pass
which would be equivalent to
class Custom(Hello):
  pass
Is it possible to create a keyword in python that's equivalent to inheriting a class?
So given class:
class Hello:
  pass
I could write
keyword Custom:
 pass
which would be equivalent to
class Custom(Hello):
  pass
