stuglaser·13 anni fa·discussA video of the talk is here: http://www.confreaks.com/videos/198-rubyconf2009-worst-ideas...
stuglaser·13 anni fa·discussI've implemented Go-style channels in Python, and it turned out pretty well. The 'select' statement is a bit verbose, but still pretty readable.You can find the code here: http://github.com/stuglaser/pychanAnd documentation here: https://chan.readthedocs.org/en/latest/
stuglaser·13 anni fa·discussI'm reimplementing Go-style channels in Python, including multiplexing:https://github.com/stuglaser/pychan
stuglaser·13 anni fa·discussI've been implementing go-style channels in Python. Check it out here: https://github.com/stuglaser/pychanBlocking on multiple channels works (chanselect).