Gabben

Results 9 comments of Gabben

Keep in mind that Telegram increases the limits of the popular bots

Also related: https://bugs.python.org/issue39232 Another workaround: https://github.com/encode/httpx/issues/914#issuecomment-622586610

I guess related: ```nim {.experimental: "views".} type Test = object tokens: openArray[int] func init(Self: typedesc[Test], tokens: openArray[int]): Self = Self(tokens: tokens.toOpenArray(tokens.low, tokens.high)) func main() = var test = Test.init [1,2,3]...

- Maintaining code that respects styleCheck is hard, especially with third-party dependencies. Therefore, support for styleCheck has been removed from the priorities for this release. - Support for aliases should...

Maybe related https://github.com/nim-lang/Nim/issues/16389

More readable example: ```nim import deser, deser_json type One = object two: Two Two = object three: Three Three = object four: Four Four = object five: Five Five =...

```nim import deser, deser_json type One = object two: Two Two = object three: Three Three = object four: Four Four = object five: Five Five = object six: Six...

```nim import deser, deser_json type One = object two: Two Two = object three: Three Three = object four: Four Four = object five: Five Five = object six: Six...

Same on 2.0.0 ```nim type Foo = object proc borrowFoo(foo: sink auto) = discard proc main() = let foo = Foo() borrowFoo(foo) main() ``` Current output of `nim c --expandArc:main...