Message269379
| Author |
Denny Weinberg |
| Recipients |
Denny Weinberg, palm.kevin |
| Date |
2016年06月27日.13:49:18 |
| SpamBayes Score |
-1.0 |
| Marked as misclassified |
Yes |
| Message-id |
<1467035358.55.0.678180807375.issue27400@psf.upfronthosting.co.za> |
| In-reply-to |
| Content |
After calling Py_Finalize and Py_Initialize I get the message "attribute of type 'NoneType' is not callable" on the datetime.strptime method.
Example:
from datetime import datetime
s = '20160505 160000'
refdatim = datetime.strptime(s, '%Y%m%d %H%M%S')
The first call works fine but it crashes after the re initialization.
Workaround:
from datetime import datetime
s = '20160505 160000'
try:
refdatim = datetime.strptime(s, '%Y%m%d %H%M%S')
except TypeError:
import time
refdatim = datetime.fromtimestamp(time.mktime(time.strptime(s, '%Y%m%d %H%M%S')))
Related Issue: Issue17408 ("second python execution fails when embedding") |
|
History
|
|---|
| Date |
User |
Action |
Args |
| 2016年06月27日 13:49:18 | Denny Weinberg | set | recipients:
+ Denny Weinberg, palm.kevin |
| 2016年06月27日 13:49:18 | Denny Weinberg | set | messageid: <1467035358.55.0.678180807375.issue27400@psf.upfronthosting.co.za> |
| 2016年06月27日 13:49:18 | Denny Weinberg | link | issue27400 messages |
| 2016年06月27日 13:49:18 | Denny Weinberg | create |
|