[issue9981] let make_buildinfo use a temporary directory on windows

2010-11-03 Thread Kristján Valur Jónsson
Kristján Valur Jónsson added the comment: Committed to 3.2 in revision 86137 -- resolution: -> accepted status: open -> closed versions: +Python 3.2 -Python 2.7 ___ Python tracker _

[issue9981] let make_buildinfo use a temporary directory on windows

2010-11-01 Thread Kristján Valur Jónsson
Kristján Valur Jónsson added the comment: Yes, I took the liberty of removing the superfluous build configuration as well, thereby simplifying the .sln and the build dependency graph. The patch is for python 2.7. Even though it's technically not a python patch but a build patch, I'll rework i

[issue9981] let make_buildinfo use a temporary directory on windows

2010-10-30 Thread Martin v . Löwis
Martin v. Löwis added the comment: make_buildinfo is always built and run as a 32-bit binary, so I think this part of the change is fine (though unrelated to the objective of the change). I think the patch is fine. -- ___ Python tracker

[issue9981] let make_buildinfo use a temporary directory on windows

2010-10-30 Thread Brian Curtin
Brian Curtin added the comment: Let me rephrase that: What makes the Release x64 configuration unnecessary, thus removed? -- ___ Python tracker ___ _

[issue9981] let make_buildinfo use a temporary directory on windows

2010-10-30 Thread Brian Curtin
Brian Curtin added the comment: Is there a reason this removes the Release x64 configuration? -- nosy: +brian.curtin ___ Python tracker ___ __

[issue9981] let make_buildinfo use a temporary directory on windows

2010-10-28 Thread Kristján Valur Jónsson
Kristján Valur Jónsson added the comment: For backwards compatibility, say with other build configurations (there is still rudimentary support for VS2005, 2003.) -- ___ Python tracker _

[issue9981] let make_buildinfo use a temporary directory on windows

2010-10-28 Thread Martin v . Löwis
Martin v. Löwis added the comment: Why is the second parameter optional? -- ___ Python tracker ___ ___ Python-bugs-list mailing list U

[issue9981] let make_buildinfo use a temporary directory on windows

2010-10-28 Thread Antoine Pitrou
Changes by Antoine Pitrou : -- nosy: +loewis ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.

[issue9981] let make_buildinfo use a temporary directory on windows

2010-09-29 Thread Kristján Valur Jónsson
Kristján Valur Jónsson added the comment: Ooops, here is the patch. -- keywords: +patch Added file: http://bugs.python.org/file19056/make_buildinfo.patch ___ Python tracker ___ _

[issue9981] let make_buildinfo use a temporary directory on windows

2010-09-28 Thread Kristján Valur Jónsson
New submission from Kristján Valur Jónsson : make_buildinfo currently creates temporary files getbuildinfo2.c and getbuildinfo.o in the current build directory. This update allows the caller to specify a temp directory to put those files in. The PCBuild pythoncore.vcproj now makes use of this,