[issue19428] marshal: error cases are not documented

2013-10-28 Thread Roundup Robot
Roundup Robot added the comment: New changeset 11958c69a4b2 by Victor Stinner in branch 'default': Issue #19428: zipimport now handles errors when reading truncated or invalid http://hg.python.org/cpython/rev/11958c69a4b2 -- nosy: +python-dev ___ Pyth

[issue19429] OSError constructor does not handle errors correctly

2013-10-28 Thread STINNER Victor
New submission from STINNER Victor: Using failmalloc project to inject MemoryError, I found a reference counter issue in OSError constructor. args parameter passed to OSError_new() becomes invalid when OSError constructor fails. I don't yet where is the bug exactly. Traces when the bug occur

[issue18408] Fixes crashes found by pyfailmalloc

2013-10-28 Thread Roundup Robot
Roundup Robot added the comment: New changeset 4749c3ac0654 by Victor Stinner in branch 'default': Issue #18408: Fix iobase_readline(), handle PyByteArray_Resize() failure http://hg.python.org/cpython/rev/4749c3ac0654 -- ___ Python tracker

[issue19413] Reload semantics changed unexpectedly in Python 3.3

2013-10-28 Thread Eric Snow
Eric Snow added the comment: Here's an updated patch. -- Added file: http://bugs.python.org/file32406/reload-semantics.diff ___ Python tracker ___ ___

[issue19413] Reload semantics changed unexpectedly in Python 3.3

2013-10-28 Thread Eric Snow
Changes by Eric Snow : Removed file: http://bugs.python.org/file32385/reload-semantics.diff ___ Python tracker ___ ___ Python-bugs-list mailin

[issue18408] Fixes crashes found by pyfailmalloc

2013-10-28 Thread Roundup Robot
Roundup Robot added the comment: New changeset 549cd815bf8d by Victor Stinner in branch 'default': Issue #18408: Fix error handling in PyBytes_FromObject() http://hg.python.org/cpython/rev/549cd815bf8d New changeset 9d9371d4ff7b by Victor Stinner in branch 'default': Issue #18408: Fix bytearrayi

[issue18964] test_tcl fails when _tkinter linked with Tcl 8.4

2013-10-28 Thread Georg Brandl
Georg Brandl added the comment: Should be done. -- status: open -> closed ___ Python tracker ___ ___ Python-bugs-list mailing list Uns

[issue17762] platform.linux_distribution() should honor /etc/os-release

2013-10-28 Thread Andrei Dorian Duma
Andrei Dorian Duma added the comment: Yes, I will provide a patch including tests soon. -- ___ Python tracker ___ ___ Python-bugs-list

[issue18864] Implementation for PEP 451 (importlib.machinery.ModuleSpec)

2013-10-28 Thread Eric Snow
Eric Snow added the comment: Here's an updated patch that implements the meat of the current PEP. Docs are still lacking and I could probably add a few more tests. Other key things left to do: * deprecations and removals * refactor importlib finders and loaders to use the new Finder/Loader A

[issue18864] Implementation for PEP 451 (importlib.machinery.ModuleSpec)

2013-10-28 Thread Eric Snow
Changes by Eric Snow : Removed file: http://bugs.python.org/file32407/modulespec-primary-changes.diff ___ Python tracker ___ ___ Python-bugs-l

[issue18864] Implementation for PEP 451 (importlib.machinery.ModuleSpec)

2013-10-28 Thread Eric Snow
Eric Snow added the comment: This time against tip. :) I should also point out that this patch is on top of the path in issue19413. -- Added file: http://bugs.python.org/file32408/modulespec-primary-changes.diff ___ Python tracker

[issue19427] enhancement: dictionary maths

2013-10-28 Thread R. David Murray
R. David Murray added the comment: In the meantime the issue should be closed. It can be reopened if consensus is reached. -- nosy: +r.david.murray resolution: -> postponed stage: -> committed/rejected status: open -> closed ___ Python tracker

[issue19427] enhancement: dictionary maths

2013-10-28 Thread Georg Brandl
Georg Brandl added the comment: This specialized use case has no chance of being added to the very general dict object. But have a look at the collections.Counter class which does exactly what you propose for positive values and the +/- operations. -- nosy: +georg.brandl

<    1   2