_ Strptime in multiple Python threads

Source: Internet
Author: User

Since the _ strptime method in datetime and time in Python does not support multithreading, an error is reported during running:

 

Import datetime
Import thread
Import time

Def F ():
Datetime. datetime. strptime ("20100101", "% Y % m % d ")

For _ in xrange (3 ):
Thread. start_new_thread (F ,())
Time. Sleep (3)

Unhandled exception in thread started by <function f at 0x2b52c24e66e0>
Traceback (most recent call last ):
File "test. py", line 7, in F
Datetime. datetime. strptime ("20100101", "% Y % m % d ")
Attributeerrorunhandled exception in thread started by <function f at 0x2b52c24e66e0>:
Traceback (most recent call last ):
File "test. py", line 7, in F
_ Strptime
Datetime. datetime. strptime ("20100101", "% Y % m % d ")
Attributeerror: _ strptime

Reference http://bugs.python.org/issue7980

You can fix this bug in the source file, but for the user, lock it when using it ..

C = threading. rlock ()
Def F ():
With C:
Datetime. datetime. strptime ("20100101", "% Y % m % d ")

 

Rlock reference

Http://www.ourunix.org/post/335.html

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.