-
I am in the process of updating from Pyarmor My code base has not changed since I am using the build process documented above. Here is a my python test script. class MyService:
def some_method(self):
pass
class MyService2:
def __init__(self, service):
self.service = service
def method1(self):
print("method1")
self.service.some_method()
class PyArmorTest:
def __init__(self, my_interface):
self.my_interface = my_interface
def run(self):
print("PyArmorTest")
self.my_interface.method1()
print('test.py, this is __pyarmor__', __pyarmor__)
service = MyService()
interface = MyService2(service)
py_armor_test = PyArmorTest(interface)
py_armor_test.run() Here is the error I am getting with rft enabled.
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Please check this page to solve rft issue Also check this page for common solutions |
Beta Was this translation helpful? Give feedback.
Please check this page to solve rft issue
https://pyarmor.readthedocs.io/en/latest/topic/rftmode.html
Also check this page for common solutions
https://pyarmor.readthedocs.io/en/latest/reference/solutions.html#target-device