[issue8098] PyImport_ImportModuleNoBlock() may solve problems but causes others.

2012-05-18 Thread Martin Dengler
Changes by Martin Dengler mar...@martindengler.com: -- nosy: +mdengler ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue8098 ___ ___ Python-bugs-list

[issue15716] Ability to specify the PYTHONPATH via a command line flag

2012-11-28 Thread Martin Dengler
Changes by Martin Dengler mar...@martindengler.com: -- nosy: +mdengler ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue15716 ___ ___ Python-bugs

[issue16499] CLI option for isolated mode

2012-11-28 Thread Martin Dengler
Changes by Martin Dengler mar...@martindengler.com: -- nosy: +mdengler ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue16499 ___ ___ Python-bugs

[issue7511] msvc9compiler.py: ValueError when trying to compile with VC Express

2013-11-25 Thread Martin Dengler
Changes by Martin Dengler mar...@martindengler.com: -- nosy: +mdengler ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue7511 ___ ___ Python-bugs-list

[issue2226] Small _abcoll Bugs / Oddities

2013-11-27 Thread Martin Dengler
Changes by Martin Dengler mar...@martindengler.com: -- nosy: +mdengler ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue2226 ___ ___ Python-bugs-list

[issue8743] set() operators don't work with collections.Set instances

2013-11-27 Thread Martin Dengler
Changes by Martin Dengler mar...@martindengler.com: -- nosy: +mdengler ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue8743 ___ ___ Python-bugs-list

[issue14302] Rename Scripts directory to bin and move python.exe to bin

2014-02-27 Thread Martin Dengler
Changes by Martin Dengler mar...@martindengler.com: -- nosy: +mdengler ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue14302 ___ ___ Python-bugs

[issue14302] Rename Scripts directory to bin and move python.exe to bin

2014-02-28 Thread Martin Dengler
Martin Dengler added the comment: Is this state closed per https://mail.python.org/pipermail/distutils-sig/2013-October/022855.html or languishing per https://mail.python.org/pipermail/python-dev/2012-March/117946.html ? I would add a belated me too to the 2. Change 'Scripts' to 'bin' part

[issue20042] Python Launcher, Windows, fails on scripts w/ non-latin names

2014-02-28 Thread Martin Dengler
Changes by Martin Dengler mar...@martindengler.com: -- nosy: +mdengler ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue20042 ___ ___ Python-bugs

[issue11240] Running unit tests in a command line tool leads to infinite loop with multiprocessing on Windows

2014-03-04 Thread Martin Dengler
Changes by Martin Dengler mar...@martindengler.com: -- nosy: +mdengler ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue11240 ___ ___ Python-bugs

[issue11240] Running unit tests in a command line tool leads to infinite loop with multiprocessing on Windows

2014-03-04 Thread Martin Dengler
Martin Dengler added the comment: the root issue turned out to be that when you execute any multiprocessing statements at the module/script level on Windows, you need to put it under if __name__ == __main__, otherwise it will cause infinite spawning. Same for me. The error message

[issue14302] Rename Scripts directory to bin and move python.exe to bin

2014-03-04 Thread Martin Dengler
Martin Dengler added the comment: Ok, you're right about my link #2; I meant to include this link (a reply to the link I actually included): https://mail.python.org/pipermail/python-dev/2012-March/118047.html ...in which I think the pertinent quote is: For direct execution, the proposal

[issue10128] multiprocessing.Pool throws exception with __main__.py

2014-03-12 Thread Martin Dengler
Changes by Martin Dengler mar...@martindengler.com: -- nosy: +mdengler ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue10128 ___ ___ Python-bugs

[issue10128] multiprocessing.Pool throws exception with __main__.py

2014-03-12 Thread Martin Dengler
Martin Dengler added the comment: I applied the patch from #10845 to 2.7.6 and it worked well for me. -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue10128

[issue15414] os.path.join behavior on Windows (ntpath.join) is unexpected and not well documented

2014-04-16 Thread Martin Dengler
Changes by Martin Dengler mar...@martindengler.com: -- nosy: +mdengler ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue15414 ___ ___ Python-bugs

[issue1669539] Improve Windows os.path.join (ntpath.join) smart joining

2014-04-16 Thread Martin Dengler
Changes by Martin Dengler mar...@martindengler.com: -- nosy: +mdengler ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1669539 ___ ___ Python-bugs

[issue21423] concurrent.futures.ThreadPoolExecutor should accept an initializer argument

2014-05-12 Thread Martin Dengler
Changes by Martin Dengler mar...@martindengler.com: -- nosy: +mdengler ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue21423 ___ ___ Python-bugs

[issue9400] multiprocessing.pool.AsyncResult.get() messes up exceptions

2014-05-12 Thread Martin Dengler
Changes by Martin Dengler mar...@martindengler.com: -- nosy: +mdengler ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue9400 ___ ___ Python-bugs-list

[issue8296] multiprocessing.Pool hangs when issuing KeyboardInterrupt

2014-05-12 Thread Martin Dengler
Changes by Martin Dengler mar...@martindengler.com: -- nosy: +mdengler ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue8296 ___ ___ Python-bugs-list

[issue21722] teach distutils upload to exit with code != 0 when error occurs

2014-06-11 Thread Martin Dengler
Martin Dengler added the comment: The attached file is a patch for backporting this fix to 2.7.7. -- Added file: http://bugs.python.org/file35573/cpython2-patch-Lib-distutils-command-upload.py.patch ___ Python tracker rep...@bugs.python.org http

[issue21722] teach distutils upload to exit with code != 0 when error occurs

2014-06-11 Thread Martin Dengler
New submission from Martin Dengler: This patch teaches distutils/command/upload.py to return a non-zero exit code when uploading fails. Currently a zero error code is returned (specifically, no Exception is raised by upload.run(...)) regardless of the HTTP response from the server or any

[issue21722] teach distutils upload to exit with code != 0 when error occurs

2014-06-11 Thread Martin Dengler
Martin Dengler added the comment: Here is the patch against hg tip. -- Added file: http://bugs.python.org/file35581/cpython-patch-Lib-distutils-command-upload.py.patch ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue21722

[issue21722] teach distutils upload to exit with code != 0 when error occurs

2014-06-11 Thread Martin Dengler
Changes by Martin Dengler mar...@martindengler.com: Removed file: http://bugs.python.org/file35573/cpython2-patch-Lib-distutils-command-upload.py.patch ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue21722

[issue21722] teach distutils upload to exit with code != 0 when error occurs

2014-06-11 Thread Martin Dengler
Martin Dengler added the comment: Here is the patch against hg 2.7. -- Added file: http://bugs.python.org/file35582/cpython2-patch-Lib-distutils-command-upload.py.patch ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue21722

[issue21722] teach distutils upload to exit with code != 0 when error occurs

2014-06-11 Thread Martin Dengler
Changes by Martin Dengler mar...@martindengler.com: Removed file: http://bugs.python.org/file35572/cpython-patch-Lib-distutils-command-upload.py.patch ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue21722

[issue21722] teach distutils upload to exit with code != 0 when error occurs

2014-06-11 Thread Martin Dengler
Martin Dengler added the comment: I will submit patches with tests as soon as the before after tests finish. -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue21722

[issue21722] teach distutils upload to exit with code != 0 when error occurs

2014-06-11 Thread Martin Dengler
Martin Dengler added the comment: Here is the patch against tip, including a new test case. -- Added file: http://bugs.python.org/file35583/cpython-patch-Lib-distutils-command-upload.py.patch ___ Python tracker rep...@bugs.python.org http

[issue21722] teach distutils upload to exit with code != 0 when error occurs

2014-06-11 Thread Martin Dengler
Martin Dengler added the comment: Here is the patch against 2.7, including a new test case. -- Added file: http://bugs.python.org/file35584/cpython2-patch-Lib-distutils-command-upload.py.patch ___ Python tracker rep...@bugs.python.org http

[issue21722] teach distutils upload to exit with code != 0 when error occurs

2014-06-11 Thread Martin Dengler
Martin Dengler added the comment: If you'd like me to change anything about the test case please let me know. -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue21722

[issue21722] teach distutils upload to exit with code != 0 when error occurs

2014-06-17 Thread Martin Dengler
Martin Dengler added the comment: I've got the contrib form bit now. -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue21722 ___ ___ Python-bugs

[issue2943] Distutils should generate a better error message when the SDK is not installed

2014-07-02 Thread Martin Dengler
Changes by Martin Dengler mar...@martindengler.com: -- nosy: +mdengler ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue2943 ___ ___ Python-bugs-list

[issue557704] netrc module can't handle all passwords

2014-10-09 Thread Martin Dengler
Martin Dengler added the comment: I know this is ancient, but the below patch handles spaces in passwords in 2.7.8 and 3.4 for me. If this is worth making into a new bug / proper patch I'm happy to do it. $ diff -uw /c/Python278/Lib/netrc.py{-orig,} --- /c/Python278/Lib/netrc.py-orig

[issue557704] netrc module can't handle all passwords

2014-10-09 Thread Martin Dengler
Martin Dengler added the comment: Sorry for the whitespace-unaware diff. The attached patch is the real one, with the obvious extra level of indentation around the critical password = lexer.get_token() line. -- keywords: +patch Added file: http://bugs.python.org/file36851/python

[issue20954] Bug in subprocess._args_from_interpreter_flags causes MemoryError

2014-10-13 Thread Martin Dengler
Changes by Martin Dengler mar...@martindengler.com: -- nosy: +mdengler ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue20954 ___ ___ Python-bugs

[issue20954] Bug in subprocess._args_from_interpreter_flags causes MemoryError

2014-10-13 Thread Martin Dengler
Martin Dengler added the comment: Just got hit with this in 2.7. -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue20954 ___ ___ Python-bugs-list

[issue22919] Update PCBuild for VS 2015

2014-11-22 Thread Martin Dengler
Changes by Martin Dengler mar...@martindengler.com: -- nosy: +mdengler ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue22919 ___ ___ Python-bugs

[issue20954] Bug in subprocess._args_from_interpreter_flags causes MemoryError

2014-11-24 Thread Martin Dengler
Martin Dengler added the comment: FWIW, I've been using a this patch for 2.7.5 in a production setting for a month now and have had no problems. -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue20954

[issue21360] mailbox.Maildir should ignore files named with a leading dot

2015-02-11 Thread Martin Dengler
Changes by Martin Dengler mar...@martindengler.com: -- nosy: +mdengler ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue21360 ___ ___ Python-bugs

[issue557704] netrc module can't handle all passwords

2016-01-17 Thread Martin Dengler
Martin Dengler added the comment: Bram's patch for "special" characters is in, mine is the one that allows spaces in .netrc by enabling the parsing of a password field's value that's surrounded by lexer.quotes ( https://hg.python.org/cpython/file/2.7/Lib/shlex.py#l45 ). This is no

[issue557704] netrc module can't handle all passwords

2016-01-17 Thread Martin Dengler
Martin Dengler added the comment: Anecdotal ( http://stackoverflow.com/a/12675195/2747741 ) evidence suggests other programs do indeed accept spaces, and a cursory browsing of the Perl source code ( http://perl5.git.perl.org/perl.git/blob/HEAD:/cpan/libnet/lib/Net/Netrc.pm#l120 ) indicates

[issue9400] multiprocessing.pool.AsyncResult.get() messes up exceptions

2016-04-25 Thread Martin Dengler
Changes by Martin Dengler <mar...@martindengler.com>: ___ Python tracker <rep...@bugs.python.org> <http://bugs.python.org/issue9400> ___ ___ Python-bugs

[issue43818] Email does not apply policy to multipart messages with defects

2022-03-26 Thread Martin Dengler
Change by Martin Dengler : -- nosy: +mdengler ___ Python tracker <https://bugs.python.org/issue43818> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue43323] UnicodeEncodeError: surrogates not allowed when parsing invalid charset

2022-03-26 Thread Martin Dengler
Change by Martin Dengler : -- nosy: +mdengler ___ Python tracker <https://bugs.python.org/issue43323> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue43818] Email does not apply policy to multipart messages with defects

2022-03-28 Thread Martin Dengler
Martin Dengler added the comment: Possible related to https://github.com/python/cpython/pull/32137 and https://bugs.python.org/issue43323 -- ___ Python tracker <https://bugs.python.org/issue43