Noa
Noa
Or actually it's not even really an IndexMap at all, is it? Internal representation should be more something like `{ indices: Vec, entries: HashMap }`, since the imports are actually...
Ok I know that's like, a whole new datastructure I just added, but it's really just a simple wrapper around a hashtable (or, simple if you know how hashmaps work,...
Yeah, the RawTable probably was a little bit overkill... but I was thinking that since the full IndexMaps were exposed for the other methods, it'd make sense to have at...
How would you feel about being able to opt in to that? Like, a separate `next_event_batch` function that returns `FetchEventsSynced`? I think it should be possible to have both; maybe...
Coming from TDCIC (This Development Cycle in Cargo) - wrt choosing the profile to run a script with, what about the suggested `run` profile, but called `script`? That way there's...
The desugaring of async functions/blocks seems under-spec'd to me. Like, if `async fn foo()` desugars to `fn foo() -> impl Future where SomeSubFuture: Future`, then any async block depending on...
Ooh, ok, so I've been thinking for a pretty long time about what the best way to allow subclassing in RustPython would be - currently, there's a 1:1 correspondence between...
@aaronclong ah, we don't really have that, the closest thing would be doc comments on the enum variants but there aren't many. That's definitely something to improve. However, you can...
Can you try setting the RUSTPYTHONPATH env car to point to the Lib directory in your checkout? Though it should know about it automatically...
This should be doable now that #2355 is merged, and the co_stacksize property can be added to #2373.