GiGaGon

Results 7 issues of GiGaGon

As the title says, it looks like currently no debug rendering is done for the colliders in [`SpatialQuery::shape_intersections`](https://docs.rs/avian2d/latest/avian2d/spatial_query/struct.SpatialQuery.html#method.shape_intersections). From what I could tell reading the debug rendering code, it only...

C-Enhancement
A-Spatial-Query
A-Debug-Rendering

I preformed the same modifications as done [in this issue](https://github.com/rustsec/rustsec/issues/1029#issuecomment-1814843858) to get the full trace. ``` C:\Users\user\Desktop\rust_projects\project>cargo audit Fetching advisory database from `https://github.com/RustSec/advisory-db.git` error: couldn't fetch advisory database: git operation...

The doc comment for `GraphMap::remove_node` confused me initially, making me think it was a fallible method, so this makes it match `GraphMap::remove_single_edge`.

I found this while messing around with #4511 [playground link](https://black.vercel.app/?version=stable&state=_Td6WFoAAATm1rRGAgAhARYAAAB0L-Wj4AC2AF1dAD2IimZxl1N_WhQxS683Co8P8Minjqpb4QfnoC1BJcmjUY2YuL-n7hzVFArdqsZ6zAZpQS4lesRd3PXpISXEGuFOqt4C4cGfy1KruABcKF9lrI40h6GcoFdNTaEKAAAAAAByImBZgAFMjgABebcBAAAAtTsj9bHEZ_sCAAAAAARZWg==) ```py ( # fmt: skip """ """ ) ``` gives `Cannot parse: 2:0: EOF in multi-line string` [playground link](https://black.vercel.app/?version=stable&state=_Td6WFoAAATm1rRGAgAhARYAAAB0L-Wj4ACxAF9dAD2IimZxl1N_WhQxS683Co8P8Minjqpb4QfnoC1BJKIZVowx8LAfhpc-5MuAw2QgyrY6enrr3D12ZHibSd-WkG8g8jYLq0lfsxduaMRk10drsZ_hjbxhkG8fGeIb1oAAAACRpCHMogk0EgABe7IBAAAAzhULcLHEZ_sCAAAAAARZWg==) ```py...

T: bug
F: strings

I had this idea while reading #4522. This probably shouldn't block `hex_codes_in_unicode_sequences` from being stabilized since it is an edge case, but would be nice to have. [playground link](https://black.vercel.app/?version=stable&state=_Td6WFoAAATm1rRGAgAhARYAAAB0L-Wj4ACPAFZdAD2IimZxl1N_WlkB95OWvLdov0ZQYddzZLl6BtM2FbT4yN6RC3ls7pwPvQE1kuvZpv0aqwohuOMNyZKCm9NwCs--GhrYoc8MgloQwt1yWnV9rQIIJONAAAAAvoW4Do9Q870AAXKQAQAAAGI4BeyxxGf7AgAAAAAEWVo=) Currently,...

T: style
F: strings

Part of #2238 While working on my first PR to the repo, I've noticed that interacting with the test cases is not easy. This is because of how much is...

C: maintenance

**Describe the bug** When using unstable, f-string quotes get incorrectly changed if the expression contains a conversion. This changes program behavior. As an example, `"" f'{""=!r}'` currently formats to `f"{''=!r}"`....

T: bug
F: strings