Clay Sweetser

Results 138 comments of Clay Sweetser

So, some open questions: - Where should "private" (unlisted/not documented) modules used by both multiple standard library modules _and_ multiple system modules go? - Should private modules use any sort...

Some additional information for those seeking to implement this: - The major files that will likely need to be changed are: - [validators.py](https://github.com/samuelcolvin/pydantic/blob/master/pydantic/validators.py) This file will need to be updated...

> There is a lot of analysis that is destructive to the shape of AST, meaning that it's oftentimes not possible to discard the types of a typed expression, re-analyze...

I would prefer the original solution where everything is open by default. It's easier to understand, and less likely to break just because a template definition was moved around.

Keep in mind that symmetric coroutines can be implemented via asymmetric coroutines, and vice-versa.

So, to me it sounds like there is: - `emscripten`, the compiler - `emscripten`, the os/system interface - `wasi`, the os/system interface Notably, the *compiler* called `emscripten` supports the *system...

As inconvenient as it may be, "really good tooling" is what is expected from a programming language. It doesn't matter if a language is the fastest or most intuitive out...

I feel that that a "push" macro should just be passed the AST of the entire section it applies to - this offers the most flexibility, and would be a...