Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

maximum recursion depth exceeded while calling a Python object #497

Open
hkfsc opened this issue Jun 29, 2022 · 0 comments
Open

maximum recursion depth exceeded while calling a Python object #497

hkfsc opened this issue Jun 29, 2022 · 0 comments

Comments

@hkfsc
Copy link

hkfsc commented Jun 29, 2022

Describe the issue briefly here, including:

  • expected result versus actual result
    Expect no errors, but program crashed.

  • involved/problematic methods, e.g. importlib.reload

  • steps to reproduce

  • for bugs, please attach a stack trace / error log

log.txt

Environment
  • rpyc version: 5.10
  • python version: 3.8.10
  • operating system: win10
  • playwright version: 1.22.0
Minimal example

Server:

rpyc_classic.py

Client:

import rpyc, sys, importlib
from test import test
conn = rpyc.classic.connect('localhost')
module = conn.modules['playwright.sync_api']
sys.modules['playwright.sync_api'] = module
module = conn.modules['playwright.sync_api._generated']
sys.modules['playwright.sync_api._generated'] = module
importlib.reload(test)

test/test.py

from playwright.sync_api import Locator
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant