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 kristjan.jonsson
Recipients kristjan.jonsson, sbt
Date 2012-06-22.13:30:11
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1340371812.31.0.491068700312.issue15124@psf.upfronthosting.co.za>
In-reply-to
Content
I cannot repro.  On my ubuntu virtualbox I get:

before:
kristjan@kristjan-VirtualBox:~/cpython$ ./python -m timeit -s "from _thread import allocate_lock" "allocate_lock()"
10000000 loops, best of 3: 0.0768 usec per loop
kristjan@kristjan-VirtualBox:~/cpython$ ./python -m timeit -s "from _thread import allocate_lock;l=allocate_lock()" "l.acquire();l.release()"
1000000 loops, best of 3: 0.209 usec per loop

after:
kristjan@kristjan-VirtualBox:~/cpython$ ./python -m timeit -s "from _thread import allocate_lock" "allocate_lock()"
10000000 loops, best of 3: 0.069 usec per loop
kristjan@kristjan-VirtualBox:~/cpython$ ./python -m timeit -s "from _thread import allocate_lock;l=allocate_lock()" "l.acquire();l.release()"
10000000 loops, best of 3: 0.182 usec per loop

I did this a few times with consistent results.  But virtual machines aren't the most stable of beasts.  Perhaps someone with a proper unix box can test it?
History
Date User Action Args
2012-06-22 13:30:12kristjan.jonssonsetrecipients: + kristjan.jonsson, sbt
2012-06-22 13:30:12kristjan.jonssonsetmessageid: <1340371812.31.0.491068700312.issue15124@psf.upfronthosting.co.za>
2012-06-22 13:30:11kristjan.jonssonlinkissue15124 messages
2012-06-22 13:30:11kristjan.jonssoncreate