PythonMonkey icon indicating copy to clipboard operation
PythonMonkey copied to clipboard

A Mozilla SpiderMonkey JavaScript engine embedded into the Python VM, using the Python engine to provide the JS host environment.

Results 84 PythonMonkey issues
Sort by recently updated
recently updated
newest added

GitHub limits the number of concurrent macOS runners to 5. macOS 13 CI runs here are redundant since our binary files built for macos-12 are forward-compatible on macos-13. I was...

JavaScript is actually supported by Doxygen In https://www.doxygen.nl/manual/config.html `EXTENSION_MAPPING` > ... language is one of the parsers supported by doxygen: IDL, Java, JavaScript, Csharp (C#), C, C++, Lex, D, PHP,...

This PR replaces https://github.com/Distributive-Network/PythonMonkey/pull/114 for the uncaughtExceptionHandler

### Issue type Bug ### How did you install PythonMonkey? None ### OS platform and distribution _No response_ ### Python version (`python --version`) _No response_ ### PythonMonkey version (`pip show...

bug

### Issue type Bug ### How did you install PythonMonkey? Installed from pip ### OS platform and distribution Windows10 ### Python version (`python --version`) 3.9 ### PythonMonkey version (`pip show...

### Issue type Bug ### How did you install PythonMonkey? None ### OS platform and distribution _No response_ ### Python version (`python --version`) _No response_ ### PythonMonkey version (`pip show...

### Issue type Bug ### How did you install PythonMonkey? None ### OS platform and distribution _No response_ ### Python version (`python --version`) _No response_ ### PythonMonkey version (`pip show...

enhancement

closes https://github.com/Distributive-Network/PythonMonkey/issues/116

### Describe your feature request here. I would like to run "somewhat untrusted" JavaScript code in PythonMonkey in a sandbox with restrictions on what it is allowed to do. For...

enhancement

### Describe your feature request here. In javascript I can do the following: ``` exports.hello = () => { console.log('hello, world') }; console.log(exports.hello.toString()) ``` However, I cannot call `toString()` from...