Hood Chatham

Results 177 issues of Hood Chatham

In a native repl, there is support for multiline input with different prompts on the first line and later lines: ![image](https://user-images.githubusercontent.com/8739626/108804335-d61da580-7551-11eb-895b-c4571143e9ca.png) Is there a way to handle this with jquery...

question
documentation

I've tried ```js keypress : function(event) { if(event.key === "Enter"){ event.preventDefault(); event.stopPropagation(); return false; } }, keydown : function(event) { if(event.key === "Enter"){ event.preventDefault(); event.stopPropagation(); return false; } }, keymap...

Bug
documentation

I am interested in wasm32-emscripten support for pyo3. We are able to build the cryptography package: https://github.com/pyodide/pyodide/pull/2378 There are still some issues with the toolchain which require patching: https://github.com/llvm/llvm-project/issues/55786 Another...

This ensures that `PySequence_Check` of a `JsProxy` of a `Array` returns `True`, that `isinstance(jsproxy_of_array, Sequence)` returns `True`, and that `isinstance(jsproxy_of_mapping, Mapping)` returns `True`. https://github.com/pyodide/pyodide/discussions/2903 To make the Array a valid...

This uses a forked version of tblib that handles `__tracebackhide__`. https://github.com/ionelmc/python-tblib/pull/66 This allows us to clean up the tracebacks generated by `run_in_pyodide`.

As requested by @tiran. Maybe we'll get lucky and opencv-python and xgboost will build on this version...

## Proposal Starting with Pyodide v0.22.0 we should only update Emscripten at the same time as we update Python. ### Motivation Until https://github.com/emscripten-core/emscripten/issues/15917 is resolved, every Emscripten update is assumed...

This adds gnu readline. This should in principle allow us to match the normal Python repl behavior (which relies on readline). We could dynamically link it instead if we want...

It would be good to release an alpha version with #2394 to help the node people test whether #2393 and related issues are fixed. We also have problems with webpack...