[issue17058] Python crashes with error 0xc0000417

2013-01-27 Thread Gili T.
Gili T. added the comment: Hey Brian, I'm curious why mixing different versions of Visual Studio runtimes would result in a problem. I thought you can mix different runtimes so long as: 1. You link against a DLL (as opposed to static linking). 2. You use the same kind of library (debug vs

[issue17058] Python crashes with error 0xc0000417

2013-01-27 Thread Brian Curtin
Brian Curtin added the comment: Passing CRT objects (like a file handle) across runtime boundaries results in unexpected behavior, which is probably what's happening here. In the past people have mentioned porting 2.7 to VS2010 which would encounter the same issues you're seeing here. Here's

[issue17058] Python crashes with error 0xc0000417

2013-01-27 Thread Gili T.
Gili T. added the comment: I read http://mail.python.org/pipermail/python-dev/2012-August/121460.html and I believe they are wrong. I have personally run into these problems (each library maintaining its own CRT with separate heaps, file handles, etc) when static linking was used, but when

[issue17058] Python crashes with error 0xc0000417

2013-01-27 Thread Brian Curtin
Brian Curtin added the comment: Maybe you should email python-dev. -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue17058 ___ ___ Python-bugs-list

[issue16997] subtests

2013-01-27 Thread Antoine Pitrou
Antoine Pitrou added the comment: 1. Easily append data to failure messages coming from a block of asserts 2. Continue running a test case after a failure from a block of asserts Both of these seem independently useful and more generally applicable, I don't understand what you mean. 1 is

[issue17055] ftplib.ftpcp test

2013-01-27 Thread Michał Jastrzębski
Michał Jastrzębski added the comment: Hello, Well, I ran coverage.py over this module and it turns out that this method, ftpcp has neighter tests nor docs. Most of ftplib is tested, but this one function was not. -- ___ Python tracker

[issue13886] readline-related test_builtin failure

2013-01-27 Thread Petri Lehtinen
Petri Lehtinen added the comment: -setlocale(LC_CTYPE, ); +setlocale(LC_CTYPE, C); This looks dangerous to me. Are you sure readline's behavior doesn't change because of this? -- ___ Python tracker rep...@bugs.python.org

<    1   2