sobolevn

Results 602 issues of sobolevn

Let's say I have this typed dict: ```python class User(TypedDict): email: str password: str ``` I would love to just pass this metadata to `mimesis` to get my random data...

feature

Refs https://github.com/python/mypy/issues/17264 I will add docs in a separate PR.

upnext

Closes #11463 Closes https://github.com/python/mypy/issues/11495 Recreate of https://github.com/python/mypy/pull/11496

Closes https://github.com/python/mypy/issues/17579 Consider this as a prototype, because I understand that there might be a lot of extra work to get this right. However, this does solve this problem in...

### Description ```rust enum Token { Name, Other, } struct Error { location: u32, token: Option, } fn add_anon_function_hint(err: Option) { if let Some(Error { ref token, .. }) =...

I-suggestion-causes-error

Right now if a user (me 😞) tries to write `import gleam.io` (like how I am used to from Python), it would be a syntax error: ``` error: Syntax error...

help wanted
good first issue
priority:medium

This is the first PR in the series. This case is not covered yet: ```rust #[test] fn import_submodule_as_value() { assert_with_module_error!( ("one/two", "pub fn whatever() {}"), " import one.{two} " );...

This is a draft of https://github.com/gleam-lang/gleam/issues/3216 ## Design - I went with option `3.` from https://github.com/gleam-lang/gleam/issues/3216#issue-2326145589 since option `2.` means something different and option `1.` was very confusing, `let assert...

I started looking at the state of random in Gleam and I have several ideas. 1. `int.random` and `float.random` do not have seeds. It might be a problem for libraries....

good first issue
help wanted