[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
> re-opened?
>
> --
>
> ___
> Python tracker 
> <http://bugs.python.org/issue2698>
> ___
>

--
Added file: http://bugs.python.org/file16522/unnamed

___
Python tracker 
<http://bugs.python.org/issue2698>
___Yes, I believe it is.
 
that should be re-opened.
2010/3/11 Craig McQueen <mailto:rep...@bugs.python.org";>rep...@bugs.python.org>

Craig McQueen <mailto:pyt...@craig.mcqueen.id.au";>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-opened?



--___Python
 tracker <mailto:rep...@bugs.python.org";>rep...@bugs.python.org><http://bugs.python.org/issue2698"; 
target="_blank">http://bugs.python.org/issue2698>
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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:  -Python 3.2

___
Python tracker 
<http://bugs.python.org/issue2698>
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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, Unicode
messages: 75220
nosy: keldonin
severity: normal
status: open
title: unexpected str.__init__() behaviour on b''
type: behavior
versions: Python 3.0

___
Python tracker <[EMAIL PROTECTED]>
<http://bugs.python.org/issue4205>
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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>
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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 -- Error 1722. There is a problem with this
Windows Installer package. A program run as part of the setup did not
finish as expected. Contact your support personnel or package vendor. 
Action CompilePyc, location: L:\Python30\python.exe, command: -Wi
"L:\Python30\Lib\compileall.py" -f -x
bad_coding|badsyntax|site-packages|py2_ "L:\Python30\Lib" 

Running the command manually indeed crashes, because of pipe symbol
being interpretted at shell level, not Python.

Please find attached a patch on Tools\msi\msi.py that addresses the
problem (untested, I don't have VStudio )

--
components: Installation
files: compileall_py.patch
keywords: patch
messages: 76318
nosy: keldonin
severity: normal
status: open
title: Windows Installer Error 1722 when opting for compilation at install time
versions: Python 3.0
Added file: http://bugs.python.org/file12119/compileall_py.patch

___
Python tracker <[EMAIL PROTECTED]>
<http://bugs.python.org/issue4407>
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



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

Eric

2008/11/30 Martin v. Löwis <[EMAIL PROTECTED]>

>
> Martin v. Löwis <[EMAIL PROTECTED]> added the comment:
>
> Thanks for the report. The problem was not with the quoting (this works
> fine), but that test/crashers/iter.py failed to compile. Fixed in r67448.
>
> --
> resolution:  -> fixed
> status: open -> closed
>
> ___
> Python tracker <[EMAIL PROTECTED]>
> <http://bugs.python.org/issue4407>
> ___
>

Added file: http://bugs.python.org/file12176/unnamed

___
Python tracker <[EMAIL PROTECTED]>
<http://bugs.python.org/issue4407>
___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 work.Eric2008/11/30 Martin v. Löwis <mailto:[EMAIL PROTECTED]">[EMAIL PROTECTED]>

Martin v. Löwis <mailto:[EMAIL PROTECTED]">[EMAIL 
PROTECTED]> added the comment:

Thanks for the report. The problem was not with the quoting (this works
fine), but that test/crashers/iter.py failed to compile. Fixed in r67448.

--
resolution:  -> fixed
status: open -> closed

___
Python tracker <mailto:[EMAIL PROTECTED]">[EMAIL 
PROTECTED]>
<http://bugs.python.org/issue4407"; 
target="_blank">http://bugs.python.org/issue4407>
___

___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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>
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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/issue2698>
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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,
>
> I confirm : Python3.1.1
> .../...
> running build
> running build_py
> running build_ext
> building 'cx_Freeze.util' extension
> error: Unable to find vcvarsall.bat
>
> I've got the r73896 file correction.
> :(
> D.
>
> --
> nosy: +Daniel26
> versions:  -Python 2.6
>
> ___
> Python tracker 
> <http://bugs.python.org/issue2698>
> ___
>

--
Added file: http://bugs.python.org/file15666/unnamed

___
Python tracker 
<http://bugs.python.org/issue2698>
___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 <mailto:rep...@bugs.python.org";>rep...@bugs.python.org>
Daniel <mailto:daniel.mon...@free.fr";>daniel.mon...@free.fr> added the 
comment:
Hello,I confirm : Python3.1.1.../...running 
buildrunning build_pyrunning build_extbuilding 
'cx_Freeze.util' extension
error: Unable to find vcvarsall.batI've got 
the r73896 file correction.:(D.--nosy: 
+Daniel26versions:  -Python 2.6


___Python tracker 
<mailto:rep...@bugs.python.org";>rep...@bugs.python.org><http://bugs.python.org/issue2698"; 
target="_blank">http://bugs.python.org/issue2698>
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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 package. A program run as part of the setup did not
finish as expected. Contact your support personnel or package vendor. 
Action CompilePyc, location: L:\Python31\python.exe, command: -Wi
"L:\Python31\Lib\compileall.py" -f -x
bad_coding|badsyntax|site-packages|py2_ "L:\Python31\Lib" 

For more information, see Help and Support Center at
http://go.microsoft.com/fwlink/events.asp.

--
components: Installation
messages: 87387
nosy: keldonin
severity: normal
status: open
title: Windows Installer Error 1722 when opting for compilation at install time 
- once again
versions: Python 3.1

___
Python tracker 
<http://bugs.python.org/issue5960>
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com