[issue19428] marshal: error cases are not documented

2015-03-18 Thread Roundup Robot
Roundup Robot added the comment: New changeset 1e4605542ac4 by Victor Stinner in branch 'default': Issue #19428: Handle PyMarshal_Read*() errors in run_pyc_file() https://hg.python.org/cpython/rev/1e4605542ac4 New changeset acb4d43955f6 by Victor Stinner in branch '3.4': Issue #19428: Document

[issue19428] marshal: error cases are not documented

2015-03-18 Thread STINNER Victor
Changes by STINNER Victor victor.stin...@gmail.com: -- resolution: - fixed status: open - closed ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue19428 ___

[issue19428] marshal: error cases are not documented

2013-10-29 Thread Georg Brandl
Georg Brandl added the comment: Is this backportable? -- nosy: +georg.brandl ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue19428 ___ ___

[issue19428] marshal: error cases are not documented

2013-10-28 Thread STINNER Victor
New submission from STINNER Victor: Since changeset 4059e871e74e (issue #19219), it becomes more clear in the source code that reading data from marshal can fail. It was already true in Python 3.3, but less explicit. Failures are not documented in Doc/c-api/marshal.rst. Failures are not

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