Nipunn Koorapati

Results 38 issues of Nipunn Koorapati

For example, if deserializing something like ```toml [dependencies] serde = { version = "1.0.126", optional = true, feautres = ["derive"] } ``` With something like ```rust let manifest: TomlManifest =...

From @Turbo87 in discord: > I would do it in roughly these steps: > 1) Add a vcs_info JSONB column to the versions table and populate it with the file...

C-enhancement ✨
A-backend ⚙️

See here https://docs.rs/quickcheck/1.0.3/src/quickcheck/arbitrary.rs.html#255 If it is set to 0, we get ``` thread 'tests::quickcheck_test' panicked at 'cannot sample empty range', /Users/nipunn/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.8.5/src/rng.rs:134:9 ``` I think it would logically make more sense...

![image](https://github.com/nipunn1313/mypy-protobuf/assets/1300387/c0c060a4-860f-465f-bbda-ea7e0d1f4316)

regressed in #489 - let's see if we can get it back before releasing.

This was a rudimentary way of having multiple mypy commands per project (as needed here). It might be more elegant to have multiple mypy_cmd within a project, but it seemed...

Before: ``` python self.assertEqual(a or b) ``` After: ``` python assert a or \ b) ``` The code still parses, so the bug is simply that the whitespace looks a...

Code like this: ``` python self.assertEqual( # Comment about a a, # Comment about b b, ) ``` Currently chokes the fixer parser, so we choose to skip them. If...

It would be nice to have the output junit.xml sorted by (pass/fail, time). I typically want to know which ones failed, then which ones were the slowest.