No description
Find a file
Kumi 5a69bb0c91
feat: integrate JSON module for sys overrides
Prepares for built-in module overrides by explicitly importing the `json` module within the `prepare_builtin_overrides` function. This approach ensures that any modifications or custom logic applied to the system's version of JSON does not unintentionally conflict with the original module's functionality. The aliasing of the original JSON module under a new name allows for safe manipulation and extension of JSON handling capabilities without affecting the global namespace or existing dependencies that rely on the unmodified JSON module.

This strategic import and module aliasing facilitate future enhancements and potentially complex custom behaviors, ensuring that extensions or modifications are both isolated and reversible, safeguarding the integrity of the application's core functionalities.
2024-05-23 12:51:54 +02:00
src/deuthon feat: integrate JSON module for sys overrides 2024-05-23 12:51:54 +02:00
tests feat(tests): improve type handling in debug output 2024-05-23 12:45:51 +02:00
.gitignore Initial implementation of Deuthon interpreter 2024-01-14 19:44:16 +01:00
LICENSE Initial implementation of Deuthon interpreter 2024-01-14 19:44:16 +01:00
pyproject.toml Initial implementation of Deuthon interpreter 2024-01-14 19:44:16 +01:00
README.md Initial implementation of Deuthon interpreter 2024-01-14 19:44:16 +01:00