LibreOffice plugin to pipe whole Writer documents through Google Translate, that ought to keep most of the page formatting.

⌈⌋ ⎇ branch:  PageTranslate


Artifact [657b3e4837]

Artifact 657b3e4837cb7d1927a656c07022b175b03f3663:

  • File test/-inherited_funcs.py — part of check-in [66f8ffe0f8] at 2022-10-21 06:20:46 on branch trunk — basic system tests (user: mario size: 316)

class a:
    def x():
        pass

class b(a):
    def x():
        None

b = b()

print(vars(a))
print(vars(b.__class__))
for func, code in vars(b.__class__).items():
    if code not in vars(a).values():
        print(func)


print( dict(list(set(b.__class__.__dict__.items()) - set(a.__dict__.items()))).keys() )