It is not entirely uncommon to write python code that depends on exact method or variable names: if hasattr(obj, "somemethod"): doOneThing() else: doSomethingElse() Will the pyobfuscate break code like this? Paul Prescod