HOME


Mini Shell 1.0
DIR: /proc/thread-self/root/usr/lib/python3/dist-packages/twisted/test/
Upload File :
Current File : //proc/thread-self/root/usr/lib/python3/dist-packages/twisted/test/myrebuilder1.py
class A:
    def a(self) -> str:
        return "a"


class B(A):
    def b(self) -> str:
        return "b"


class Inherit(A):
    def a(self) -> str:
        return "c"