[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

[issue9532] pipe.read hang, when calling commands.getstatusoutput in multi-threading code of python 2.4

2010-08-08 Thread denny
denny added the comment: Hi David I have tried in another testbd with python 2.6.5, and the problem of hang doesn't reproduce, after retrying for several times. The original hang happens in pipe.read of commands module. After comparing the code of python 2.4.4 and python 2.6.5, I no

[issue9532] pipe.read hang, when calling commands.getstatusoutput in multi-threading code of python 2.4

2010-08-06 Thread denny
New submission from denny : Hi all My environment is python 2.4.4 on linux. I am encountering hang of pipe.read() in commands.getstatusoutput for multi-threading code. I have spawned several threads which will call commands.getstatusoutput to run cli. However, pipe.read may hang sometimes