Simon Sapin
Simon Sapin
https://github.com/rust-lang/rust/pull/43880 proposed a change that could potentially break some code, and cargobomb was used to evaluate the impact. This found a couple issues that were fixed, and then the PR...
This might be the wrong place to fix if this is generated code, but I don’t know where the source is.
I’ve just written this function: ```rust fn decode_to_utf16(bytes: &[u8], encoding: &'static Encoding) -> Vec { let mut decoder = encoding.new_decoder(); let capacity = decoder.max_utf16_buffer_length(bytes.len()).exepct("Overflow"); let mut utf16 = Vec::with_capacity(capacity); let...
I tried this on Servo, but there are enough crates that resulting graph is an unreadable mess. It’d be nice to be able to build a graph on only `path`...
The `py_capsule!` and `py_capsule_fn!` macros generate `retrieve` functions that cache their results for subsequent calls. Prior to this commit, caching is done with a generated unsafe `static mut` item whose...
The `py_capsule` and `py_capsule_fn` macros generate code that cache the pointer obtained from a capsule in a `static mut` item, with a `std::sync::Once` in a second `static` item for thread-safety....
Gedit 3.8 switched to Python 3 for its plugins.
Hi, I’m the maintainer of cssselect, which does in Python pretty much the same as Nokogiri for CSS selectors: translate them to XPath. It looks like the SimonSapin/cssselect#12 bug also...
Steps to reproduce: * In Glowing Bear, join a new channel, or start a new private conversation such as a new buffer is opened in weechat * Switch Glowing Bear...
Does `py-spy record` ignore threads that don’t contain any Python stack frame by default? I have a Python program with a native extension (that happens to be written in Rust)....