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 grooverdan
Recipients alexandre.vassalotti, grooverdan, wangchun
Date 2009-09-01.09:29:26
SpamBayes Score 0.0018420168
Marked as misclassified No
Message-id <1251797372.23.0.743416080796.issue5885@psf.upfronthosting.co.za>
In-reply-to
Content
to prove it a bit more - ctype benchmark
>>> import ctypes, ctypes.util
>>> def uu1(n):
...      t = time.time()
...      _buffer = ctypes.create_string_buffer(16)
...      for x in range(n):
...         uuid._uuid_generate_time(_buffer)
...      print('%.3f microseconds' % ((time.time() - t) * 1000000.0 / n))
...
>>> uu1(1000000)
15.819 microseconds
History
Date User Action Args
2009-09-01 09:29:34grooverdansetrecipients: + grooverdan, alexandre.vassalotti, wangchun
2009-09-01 09:29:32grooverdansetmessageid: <1251797372.23.0.743416080796.issue5885@psf.upfronthosting.co.za>
2009-09-01 09:29:29grooverdanlinkissue5885 messages
2009-09-01 09:29:27grooverdancreate