[issue9318] Py3k compilation on old MSVC

2010-07-20 Thread Hirokazu Yamamoto
New submission from Hirokazu Yamamoto : Hello. Attached patch is needed to compile on MSVC6. I'm appriciated if this patch is accepted. -- components: Build files: py3k_compile_on_old_compiler.patch keywords: patch messages: 111007 nosy: ocean-city priority: normal severity: n

[issue9116] test_capi.test_no_FatalError_infinite_loop crash on Windows

2010-07-31 Thread Hirokazu Yamamoto
Changes by Hirokazu Yamamoto : -- priority: normal -> release blocker ___ Python tracker <http://bugs.python.org/issue9116> ___ ___ Python-bugs-list mai

[issue9313] distutils error on MSVC older than 8

2010-07-31 Thread Hirokazu Yamamoto
Hirokazu Yamamoto added the comment: Other test functions already have such skips. So I think another skip is acceptable here. But maybe it's better to skip entire msvc9compilerTestCase class (by class decorator). -- ___ Python tracker

[issue9116] test_capi.test_no_FatalError_infinite_loop crash on Windows

2010-08-06 Thread Hirokazu Yamamoto
Changes by Hirokazu Yamamoto : -- dependencies: +Improve condition variable emulation on NT ___ Python tracker <http://bugs.python.org/issue9116> ___ ___ Pytho

[issue3210] subprocess.Popen does not release process handles if process cannot be started

2010-08-06 Thread Hirokazu Yamamoto
Hirokazu Yamamoto added the comment: Sorry for posting to closed entry, but I think handle should be closed in Lib/subprocess.py not in PC/_subprocess.c. I noticed following code showed strange error. import subprocess for _ in xrange(2): stdout = open("stdout.txt", &q

[issue9116] test_capi.test_no_FatalError_infinite_loop crash on Windows

2010-08-07 Thread Hirokazu Yamamoto
Hirokazu Yamamoto added the comment: I said I saw same crash on test_threading in msg110902, but there is possibility that this is different problem. So I'll remove my patch and clear dependencies I set. -- dependencies: -Improve condition variable emulation

[issue9116] test_capi.test_no_FatalError_infinite_loop crash on Windows

2010-08-07 Thread Hirokazu Yamamoto
Changes by Hirokazu Yamamoto : Removed file: http://bugs.python.org/file18091/py3k_ceval_gil.patch ___ Python tracker <http://bugs.python.org/issue9116> ___ ___ Python-bug

[issue9116] test_capi.test_no_FatalError_infinite_loop crash on Windows

2010-08-07 Thread Hirokazu Yamamoto
Changes by Hirokazu Yamamoto : -- nosy: -ocean-city ___ Python tracker <http://bugs.python.org/issue9116> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue9555] transient crashes on "x86 XP-4" buildbot: test_file, test_file2k, test_bsddb3

2010-08-10 Thread Hirokazu Yamamoto
Hirokazu Yamamoto added the comment: Maybe is this duplicate of #9295? -- nosy: +ocean-city ___ Python tracker <http://bugs.python.org/issue9555> ___ ___ Pytho

[issue9295] test_close_open_print_buffered(test_file) sometimes crashes

2010-08-10 Thread Hirokazu Yamamoto
Hirokazu Yamamoto added the comment: I cannot crash python by above patch anymore... Strange. > Is test_close_open_print_buffered the only test that fails? It seem to be. Is freeing the memory allocated for setvbuf() while close() running in another thread really s

[issue9295] test_close_open_print_buffered(test_file) sometimes crashes

2010-08-10 Thread Hirokazu Yamamoto
Hirokazu Yamamoto added the comment: - above patch + above script -- ___ Python tracker <http://bugs.python.org/issue9295> ___ ___ Python-bugs-list mailin

[issue9558] build_ext fails on VS8.0

2010-08-10 Thread Hirokazu Yamamoto
New submission from Hirokazu Yamamoto : test_build_ext fails on VS8.0. == ERROR: test_build_ext (distutils.tests.test_build_ext.BuildExtTestCase) -- Traceback

[issue9558] build_ext fails on VS8.0

2010-08-10 Thread Hirokazu Yamamoto
Hirokazu Yamamoto added the comment: Is *release blocker* too strong? -- ___ Python tracker <http://bugs.python.org/issue9558> ___ ___ Python-bugs-list mailin

[issue8411] New GIL: improve condition variable emulation on NT

2010-08-10 Thread Hirokazu Yamamoto
Hirokazu Yamamoto added the comment: This commit also fixed test_thread.py crash on win2000. Thanks! -- nosy: +ocean-city status: pending -> open ___ Python tracker <http://bugs.python.org/iss

[issue8411] New GIL: improve condition variable emulation on NT

2010-08-10 Thread Hirokazu Yamamoto
Changes by Hirokazu Yamamoto : -- status: open -> pending ___ Python tracker <http://bugs.python.org/issue8411> ___ ___ Python-bugs-list mailing list Unsubscri

[issue8411] New GIL: improve condition variable emulation on NT

2010-08-10 Thread Hirokazu Yamamoto
Changes by Hirokazu Yamamoto : -- status: pending -> open Removed message: http://bugs.python.org/msg113544 ___ Python tracker <http://bugs.python.org/iss

[issue8411] New GIL: improve condition variable emulation on NT

2010-08-10 Thread Hirokazu Yamamoto
Changes by Hirokazu Yamamoto : -- nosy: -ocean-city status: open -> pending ___ Python tracker <http://bugs.python.org/issue8411> ___ ___ Python-bugs-list mai

[issue9318] Py3k compilation on old MSVC

2010-08-10 Thread Hirokazu Yamamoto
Hirokazu Yamamoto added the comment: PC/pyconfig.h: no more needed. fixed in posixmodule.c Python/import.c: my patch was wrong. we should use _mkdir(const char*) on windows. there is deprecated function mkdir(const char*), but it doesn't take mode_t as parameter. so maybe it is unsafe to

<    5   6   7   8   9   10