.

Results 20 comments of .

can I take this up? @asraa Just to confirm, we just want to ensure that keys are unmarshalled before they are returned?

@froh the guys at instagram have a tool called [monkeytype](https://github.com/Instagram/MonkeyType) that may be helpful. It mostly just works for base types AFAIK but I reckon between that and mypy's stubgen,...

Wouldn't prepending the name with an underscore be fine (`_FOO`), like with local unused variables?

@ghuls It looks like you are trying to use `Static[T]` as a runtime value in a container, which Codon currently does not support. `Static` is a compile-time specialization type not...

I think I should be able to add this pretty easily

Semgrep’s semantic searches are mostly structural and literal afaik. It doesn’t track refinements or constant propagation, so in general: ```python x = 5 if x == 5: foo(x) foo(5) ```...