This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author anacrolix
Recipients TarkaSteve, anacrolix, andresfreund, asksol, forest, jnoller, roudkerk
Date 2011-04-09.00:13:26
SpamBayes Score 7.186838e-07
Marked as misclassified No
Message-id <1302308007.88.0.593398911118.issue3831@psf.upfronthosting.co.za>
In-reply-to
Content
I look forward to this, or something similar. Inspiration can be taken from Golangs's select behaviour on channels.

select {
case i1 = <-c1:
	print("received ", i1, " from c1\n")
case c2 <- i2:
	print("sent ", i2, " to c2\n")

default:
	print("no communication\n")
}
History
Date User Action Args
2011-04-09 00:13:28anacrolixsetrecipients: + anacrolix, forest, roudkerk, jnoller, TarkaSteve, asksol, andresfreund
2011-04-09 00:13:27anacrolixsetmessageid: <1302308007.88.0.593398911118.issue3831@psf.upfronthosting.co.za>
2011-04-09 00:13:27anacrolixlinkissue3831 messages
2011-04-09 00:13:26anacrolixcreate