From mboxrd@z Thu Jan 1 00:00:00 1970 MIME-Version: 1.0 In-Reply-To: References: Date: Thu, 12 Mar 2009 08:44:38 -0700 Message-ID: <4f34febc0903120844t3b2448a1gac4e827da54cb7e@mail.gmail.com> From: John Barham To: Fans of the OS Plan 9 from Bell Labs <9fans@9fans.net> Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Subject: Re: [9fans] python csp Topicbox-Message-UUID: ba02b5ec-ead4-11e9-9d60-3106f5b1d025 > coming up: another port of the 9 code. > maybe i'm hidebound, but i hate to do concurrent > programming without channels! How about using queues (http://docs.python.org/library/queue.html)? I've used them many times for inter-thread communication. John