我有一个python函数在“正常”模式下工作正常但在我在线程函数中运行时会抛出错误。
功能
def is_valid_date(date_value, is_mandatory):
'''validate a date value. Return True if its a valid date
http://stackoverflow.com/questions/2216250/how-can-i-validate-a-date-in-python-3-x
'''
try:
if is_mandatory == True:
if len(date_value) != 8:
return False
y = date_value[0:4]
m = date_value[4:6]
d = date_value[6:8]
date_value = d + "/" + m + "/" + y
date_value = time.strptime(date_value, '%d/%m/%Y')
return True
else:
if len(date_value) > 0:
if len(date_value) != 8:
return False
y = date_value[0:4]
m = date_value[4:6]
d = date_value[6:8]
date_value = d + "/" + m + "/" + y
date_value = time.strptime(date_value, '%d/%m/%Y')
return True
else:
return True
except ValueError:
return False
错误:
Exception in thread Thread-1:
Traceback (most recent call last):
File "/usr/lib/python3.2/threading.py", line 740, in _bootstrap_inner
self.run()
File "/home/lukik/apps/myapp/data_file/validate.py", line 97, in run
is_valid, text_returned = is_valid_data_type(self.myText, dt_columns[colCounter].data_type, dt_columns[colCounter].mandatory)
File "/home/lukik/apps/myapp/helper.py", line 27, in is_valid_data_type
if is_valid_date(text_to_check, is_mandatory) != True:
File "/home/lukik/apps/myapp/helper.py", line 91, in is_valid_date
date_value = time.strptime(date_value, '%d/%m/%Y')
AttributeError: _strptime_time
是我的排队和线程功能中的日期函数有错误还是“竞争条件”?
答案 0 :(得分:5)
显然,在python 2.6中以线程模式运行time.strptime()
函数一直到3.2都存在错误。我找到了一个SO link,它指示我bugs.python.org表示错误。
SO链接上@interjay的hack是你需要在初始化线程之前调用time.strptime()。到目前为止它对我有用。不知道是否有人有更好的解决方案,因为这更像是一种解决方法,而不是解决方案。