-
-
Notifications
You must be signed in to change notification settings - Fork 138
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
nested dict to lua dictionary #199
Milestone
Comments
Merged
Wait #208 |
Is there a way to convert a Lua table with circular references into a Python dictionary? |
Detecting circular references data structures is really annoying in this case, we'd better limit the depth in some way. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hello,
Is there any way to use table_from method given a nested dictionary to produce the corresponding lua table?
What I would like to achieve is something like this:
and then convert out_table to string and save it as lua file.
I have seen in #34 that a recursive=True arg could be used but it does not seem to be implemented so far...
The text was updated successfully, but these errors were encountered: