[issue27400] Datetime NoneType after calling Py_Finalize and Py_Initialize

2017-01-16 Thread Denny Weinberg
Denny Weinberg added the comment: Any news here? 3.6.0 is also affected by this bug. -- ___ Python tracker <http://bugs.python.org/issue27400> ___ ___ Python-bug

[issue27625] "make install" fails when no zlib support available

2016-07-26 Thread Denny Weinberg
Changes by Denny Weinberg : -- nosy: +Denny Weinberg ___ Python tracker <http://bugs.python.org/issue27625> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue27516] Wrong initialization of python path with embeddable distribution

2016-07-26 Thread Denny Weinberg
Changes by Denny Weinberg : -- nosy: +Denny Weinberg ___ Python tracker <http://bugs.python.org/issue27516> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue27400] Datetime NoneType after calling Py_Finalize and Py_Initialize

2016-06-27 Thread Denny Weinberg
Denny Weinberg added the comment: Just to be clear: The error happens after these steps: 1. Call strptime 2. Call cpython function "Py_Finalize" and "Py_Initialize" 3. Call strptime again Now we get the error "attribute of type &

[issue27400] Datetime NoneType after calling Py_Finalize and Py_Initialize

2016-06-27 Thread Denny Weinberg
New submission from Denny Weinberg: 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 16' refdatim = datetime.str

[issue17408] second python execution fails when embedding

2016-06-27 Thread Denny Weinberg
Denny Weinberg added the comment: Ok, thank you very much for your comments. See Issue27400 -- ___ Python tracker <http://bugs.python.org/issue17408> ___ ___

[issue17408] second python execution fails when embedding

2016-06-27 Thread Denny Weinberg
Denny Weinberg added the comment: Can we please reopen this issue? -- ___ Python tracker <http://bugs.python.org/issue17408> ___ ___ Python-bugs-list mailin

[issue17408] second python execution fails when embedding

2016-05-19 Thread Denny Weinberg
Denny Weinberg added the comment: Hi, I think that the problem exists also in python 3.5.1 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