[issue2698] Extension module build fails for MinGW: missing vcvarsall.bat

2010-03-26 Thread Eric Devolder
Eric Devolder eric.devol...@gmail.com added the comment: This seems to be fixed now under 3.1.2, and works properly for me. Great stuff, thank you. Eric P.S. Last time I mistakenly tagged the bug to be Python 3.2 as well, correcting this now. -- versions: -Python 3.2

[issue2698] Extension module build fails for MinGW: missing vcvarsall.bat

2010-03-16 Thread Eric Devolder
Eric Devolder eric.devol...@gmail.com added the comment: Same problem on 3.1.2rc1. -- versions: +Python 3.2 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue2698

[issue2698] Extension module build fails for MinGW: missing vcvarsall.bat

2010-03-11 Thread Eric Devolder
Eric Devolder eric.devol...@gmail.com added the comment: Yes, I believe it is. that should be re-opened. 2010/3/11 Craig McQueen rep...@bugs.python.org Craig McQueen pyt...@craig.mcqueen.id.au added the comment: This still seems to be a bug in Python 3.1.1, does it not? Can this be re

[issue2698] Extension module build fails for MinGW: missing vcvarsall.bat

2009-12-23 Thread Eric Devolder
Eric Devolder eric.devol...@gmail.com added the comment: Will send you the trick (file) to make it work, but I can't do it from here (at work - access restrictions) - please wait until Tonight :-) Cheers Eric 2009/12/23 Daniel rep...@bugs.python.org Daniel daniel.mon...@free.fr added

[issue2698] Extension module build fails for MinGW: missing vcvarsall.bat

2009-07-22 Thread Eric Devolder
Changes by Eric Devolder eric.devol...@gmail.com: -- nosy: +keldonin ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue2698 ___ ___ Python-bugs-list

[issue2698] Extension module build fails for MinGW: missing vcvarsall.bat

2009-07-22 Thread Eric Devolder
Eric Devolder eric.devol...@gmail.com added the comment: Same problem under WinXP, using mingw compiler. Works for my package under Python 3.0, ceases functioning under 3.1, with same error message. -- ___ Python tracker rep...@bugs.python.org http

[issue5960] Windows Installer Error 1722 when opting for compilation at install time - once again

2009-07-03 Thread Eric Devolder
Eric Devolder eric.devol...@gmail.com added the comment: problem fixed under final 3.1 -- status: open - closed ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue5960

[issue5960] Windows Installer Error 1722 when opting for compilation at install time - once again

2009-05-07 Thread Eric Devolder
New submission from Eric Devolder eric.devol...@gmail.com: Hi, Same problem as issue 4407, but on release 3.1b1 this time. Guessing the same cure would apply... for reference, here is the updated text, taken from event viewer: Product: Python 3.1b1 -- Error 1722. There is a problem

[issue5831] Doc mistake : threading.Timer is *not* a class

2009-04-25 Thread Eric Devolder
Changes by Eric Devolder eric.devol...@gmail.com: -- nosy: +keldonin ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue5831 ___ ___ Python-bugs-list

[issue4407] Windows Installer Error 1722 when opting for compilation at install time

2008-12-01 Thread Eric Devolder
Changes by Eric Devolder [EMAIL PROTECTED]: Removed file: http://bugs.python.org/file12176/unnamed ___ Python tracker [EMAIL PROTECTED] http://bugs.python.org/issue4407

[issue4407] Windows Installer Error 1722 when opting for compilation at install time

2008-11-30 Thread Eric Devolder
Eric Devolder [EMAIL PROTECTED] added the comment: Dear Martin, It's my pleasure. I'm just sorry if I misled you a bit, but as I told I haven't managed to have a full testing env yet ( although I'm close to it), so I could not check in time if it would have fixed the bug. Thanks for the great

[issue4407] Windows Installer Error 1722 when opting for compilation at install time

2008-11-24 Thread Eric Devolder
New submission from Eric Devolder [EMAIL PROTECTED]: This error happens when opting in for compiling the scripts at installation. (please note also that I did not selected register extension, but I don't think this has an impact). Here is the text from event viewer: Product: Python 3.0rc3

[issue4205] unexpected str.__init__() behaviour on b''

2008-10-25 Thread Eric Devolder
New submission from Eric Devolder [EMAIL PROTECTED]: creating a unicode string from an empty b'' does not result in '', but produces b'' instead. str(b'') b'' Workaround: if the encoding is specified, the resulting string is fine. str(b'', 'ascii') '' -- components: Interpreter Core

[issue4205] unexpected str.__init__() behaviour on b''

2008-10-25 Thread Eric Devolder
Eric Devolder [EMAIL PROTECTED] added the comment: Thanks for the tip - and sorry about the noise. I didn't catch this when reading through PEPs manual, however. ___ Python tracker [EMAIL PROTECTED] http://bugs.python.org/issue4205