[python-uk] Cambridge & East Anglia Pub Meeting, 8th *Jan*, not Feb

2007-12-20 Thread Tony Ibbs
Apologies -- the next Cambridge & East Anglian Python group meeting will be on the 8th *January* 2008. The other details were right, though: Carlton Arms at 8pm. Tony Ibbs / Tibs ___ python-uk mailing list python-uk@python.org http://mail.python.org/mail

[python-uk] Cambridge & East Anglia Pub Meeting, 8th Feb

2007-12-20 Thread Tony Ibbs
The next meeting of the Cambridge & East Anglia Python group will be at 8pm on Tuesday 8th February 2008 at the Carlton Arms (http://www.thecarltonarms.co.uk/). Meetings after that will be on the first Tuesday of each month, same time, same place. Tony Ibbs / Tibs -- [EMAIL PROTECTED] http://www

Re: [python-uk] [pyconuk] Minimalistic software transactional memory

2007-12-20 Thread Michael Sparks
On Thursday 20 December 2007 07:55:11 Richard Taylor wrote: > That is reasonable. There can be performance improvements from using > separate read/write locks under certain loads, but I doubt that is an issue > here. Indeed. I'm tempted to do value level locking at somepoint, but performance isn

Re: [python-uk] [pyconuk] Minimalistic software transactional memory

2007-12-20 Thread Richard Taylor
Mike On Wednesday 19 December 2007, Michael Sparks wrote: > The thing here all of these functions have in common is they are all > read-write on the state (eg creating non-pre-existing vars). So rather than > having separate read & write locks, I've decided on a single lock for > read-write. That