[issue7021] subprocess.Popen doesn't work without "executable="

2009-09-29 Thread Konstantin M. Khankin
New submission from Konstantin M. Khankin : I'm need to call sendmail. So I wrote: http://paste.org.ru/?imuoia os.stat there is to confirm that python can have access to sendmail executable That code returned an exception: http://paste.org.ru/?jbxadp But documentation says, that I can write execu

[issue7005] ConfigParser does not handle options without values

2009-09-29 Thread Fred L. Drake, Jr.
Fred L. Drake, Jr. added the comment: I just looked at some MySQL configuration examples, and wonder if the guys that made that configuration-style choice were on crack. MySQL's syntax is sufficient justification for this feature (however abhorrent I consider it). (I've not read the patch.) -

[issue7021] subprocess.Popen doesn't work without "executable="

2009-09-29 Thread Konstantin M. Khankin
Konstantin M. Khankin added the comment: And I still can't make it works. Now sendmail is called but says that "Recipient addresses must be specified on the command line or via the - -- ___ Python tracker _

[issue7021] subprocess.Popen doesn't work without "executable="

2009-09-29 Thread Konstantin M. Khankin
Konstantin M. Khankin added the comment: Sorry, it's my fault. I must write it as list, not as string -- status: open -> closed ___ Python tracker ___ ___

[issue7020] regression in pywin32 build due to 2.6.3rc1

2009-09-29 Thread Ned Deily
Ned Deily added the comment: Is this a release blocker problem for 2.6.3? -- nosy: +barry, ned.deily ___ Python tracker ___ ___ Python

[issue6972] zipfile.ZipFile overwrites files outside destination path

2009-09-29 Thread Thomas W. Barr
Changes by Thomas W. Barr : Removed file: http://bugs.python.org/file15002/zipfile-6972-test.diff ___ Python tracker ___ ___ Python-bugs-list m

[issue6972] zipfile.ZipFile overwrites files outside destination path

2009-09-29 Thread Thomas W. Barr
Thomas W. Barr added the comment: My apologies, I clicked the wrong button and deleted my test. There is no change in the newly uploaded one. -- Added file: http://bugs.python.org/file15005/zipfile-6972-test.diff ___ Python tracker

[issue7020] regression in pywin32 build due to 2.6.3rc1

2009-09-29 Thread Sridhar Ratnakumar
Sridhar Ratnakumar added the comment: Quite note: I am able to repro this freshly using pywin32 212 version. http://sourceforge.net/projects/pywin32/files/pywin32/Build%20212/ pywin32-212.zip/download (214 goes past the copying part, but I could not complete the build to some missing executab

[issue7020] regression in pywin32 build due to 2.6.3rc1

2009-09-29 Thread Sridhar Ratnakumar
Sridhar Ratnakumar added the comment: Replacing the distutils packages with the Lib/distutils from 2.6.2 fixed the issue. So this was introduced by a change in distutils. Tarek, any insight into this issue? -- ___ Python tracker

[issue4192] Subprocess error with I/O redirection to Pipes

2009-09-29 Thread Pascal Chambon
Changes by Pascal Chambon : -- status: open -> closed ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mai

[issue7022] Doc update for io module

2009-09-29 Thread Pascal Chambon
New submission from Pascal Chambon : *Propositions of doc update* *RawIOBase*.read(n: int) -> bytes Read up to n bytes from the object and return them. Fewer than n bytes may be returned if the operating system call returns fewer than n bytes. If 0 bytes are returned, and n was not 0, this indi

<    1   2