[issue19439] Build _testembed on Windows

2013-11-05 Thread Roundup Robot
Roundup Robot added the comment: New changeset 99640494ca7f by Zachary Ware in branch 'default': #19439: Update PCbuild/readme.txt with new sub-project http://hg.python.org/cpython/rev/99640494ca7f -- ___ Python tracker

[issue19439] Build _testembed on Windows

2013-11-03 Thread Roundup Robot
Roundup Robot added the comment: New changeset c8c6c007ade3 by Nick Coghlan in branch 'default': Close #19439: execute embedding tests on Windows http://hg.python.org/cpython/rev/c8c6c007ade3 -- nosy: +python-dev resolution: -> fixed stage: patch review -> committed/rejected status: ope

[issue19439] Build _testembed on Windows

2013-11-02 Thread Nick Coghlan
Changes by Nick Coghlan : -- resolution: -> fixed stage: patch review -> committed/rejected status: open -> closed ___ Python tracker ___ ___

[issue19439] Build _testembed on Windows

2013-11-02 Thread Nick Coghlan
Nick Coghlan added the comment: I checked that test_capi still passed on Fedora as well. Only tweak I made before committing was to ensure that the read end of the test pipe used to determine the default pipe encoding was also closed. -- resolution: fixed -> stage: committed/rejected

[issue19439] Build _testembed on Windows

2013-11-02 Thread Zachary Ware
Zachary Ware added the comment: This patch's changes to test_capi seem to work for Windows and keeps at least Gentoo and FreeBSD 10 happy. -- stage: -> patch review Added file: http://bugs.python.org/file32471/issue19439.v2.diff ___ Python tracker

[issue19439] Build _testembed on Windows

2013-11-01 Thread Zachary Ware
Zachary Ware added the comment: That appears to be the case: """ P:\Projects\OSS\Python\cpython\ $ chcp Active code page: 437 P:\Projects\OSS\Python\cpython\ $ PCbuild\python_d.exe Python 3.4.0a4+ (default:995173ed248a+, Nov 1 2013, 09:12:43) [MSC v.1600 32 bit (Intel)] on win32 Type "help",

[issue19439] Build _testembed on Windows

2013-10-29 Thread Nick Coghlan
Nick Coghlan added the comment: Nice! I wonder if there might a difference between the default console encoding and the default pipe encoding (that test assumes the default standard stream encodings will be the same in the current process as they are in the child). -- __

[issue19439] Build _testembed on Windows

2013-10-29 Thread Zachary Ware
New submission from Zachary Ware: Here's a patch that builds _testembed on Windows and adjusts test_capi to not skip EmbeddingTests on Windows. The .vcxproj is based on _freeze_importlib, with "when to build" settings lifted from _testimportmultiple. The patch also adjusts test_capi.Embedding