Eli Bendersky
Eli Bendersky
I'm sorry, but there's no tutorial. There's `asdl_c.py` which uses the module to emit C code, and there's `asdl_test.py` which has tests. Both have sample code that use the module,...
Would the code be backwards compatible to older versions of PyQt too?
A PR can't hurt. I don't know whether I'll merge it if the changes are large, because there's no way for me to test this now. But I can point...
PRs welcome :)
Agree that having a simple fuzzing example would be beneficial. PRs welcome
The same service gives me >200 errors on HN and same for reddit.com (just two sites I randomly checked) :-) Have to think about it a bit, as I'm not...
Not objecting per se, but do note that `sync.Cond` is considered a *very* specialized tool in Go. I'd venture to say that it's not very widely used, given that Go...
@JJGO if you haven't seen it, I recommend checking out Bryan Mill's Rethinking Classical Concurrency patterns. The slides with speaker notes are at https://drive.google.com/file/d/1nPdvhB0PutEJzdCq5ms6UI58dp50fcAN/view -- start on page 37 for...
Thanks for the suggestion. Named returns can harm readability in many cases, so I'd like to have a reasonably good example of their usage. There are a couple of examples...
I think it's a good idea in general, but the devil is in the details. Wrapping errors is a power use, but gobyexample tries to stick to simpler concepts. Detailed...