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

2010-03-26 Thread Eric Devolder
Eric Devolder 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: -

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

2010-03-16 Thread Eric Devolder
Eric Devolder added the comment: Same problem on 3.1.2rc1. -- versions: +Python 3.2 ___ Python tracker <http://bugs.python.org/issue2698> ___ ___ Python-bug

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

2010-03-11 Thread Eric Devolder
Eric Devolder added the comment: Yes, I believe it is. that should be re-opened. 2010/3/11 Craig McQueen > > Craig McQueen added the comment: > > This still seems to be a bug in Python 3.1.1, does it not? Can this be

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

2009-12-23 Thread Eric Devolder
Eric Devolder 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 > > Daniel added the comment: > > Hello, > >

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

2009-07-22 Thread Eric Devolder
Eric Devolder 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 <http://bugs.python.org/issue2

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

2009-07-22 Thread Eric Devolder
Changes by Eric Devolder : -- nosy: +keldonin ___ Python tracker <http://bugs.python.org/issue2698> ___ ___ Python-bugs-list mailing list Unsubscribe:

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

2009-07-03 Thread Eric Devolder
Eric Devolder added the comment: problem fixed under final 3.1 -- status: open -> closed ___ Python tracker <http://bugs.python.org/issue5960> ___ ___ Python-

[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 : 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 with this Windows Installer

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

2009-04-25 Thread Eric Devolder
Changes by Eric Devolder : -- nosy: +keldonin ___ Python tracker <http://bugs.python.org/issue5831> ___ ___ Python-bugs-list mailing list Unsubscribe:

[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.pytho

[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 fixe

[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: P

[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://b

[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 spe