Noa

Results 60 issues of Noa

Since 1.47, standard library crates have been in `rustlib/src/rust/library/foo` instead of `rustlib/src/rust/src/libfoo`. This fixes errors like #172

Resolves #225. Here's an initial draft of the "as" attribute, let me know what you think. Note that as of tomorrow, I'll be going to summer camp, so I may...

Sort-of related to #174, but more general. I'm looking into converting RustPython's bytecode format to use deku over bincode (https://github.com/RustPython/RustPython/issues/2362#issuecomment-857747216), and I'm running into a few issues cause I want...

enhancement

In facebook/jsx#57, the JSX spec was updated to allow for spreading children, basically turning ```jsx ( {...children} ) ``` into ```js factory('div', null, ...children) ``` This is a useful syntax,...

See e.g. #2570. Some of the unit tests there with "wrong error message" should be somewhat easy to fix - just correct the error message we have to match CPython's....

e.g. when trying to implement `collections.defaultdict` defining `__missing__` on `defaultdict` doesn't get detected from `dict.__getitem__`.

compat

I've been playing with the idea of being able to build a module/extension in Rust that plugs in to RustPython, and I think I've come up with a pretty decent...

enhancement
A-design

This would fix (or make unnecessary) brendanzab/gl-rs#528, which was an attempt to fix `webgl_stdweb` compiling under `wasm-pack`/`wasm-bindgen`. It was giving me these kind of errors: ``` ❯ cargo c --target...

I know I still have docs to add, but would like feedback/thoughts on the API/implementation. --- This change is [](https://reviewable.io/reviews/open-i18n/rust-unic/281)