[issue15770] _testbuffer.get_contiguous() doesn't check input arguments

2012-08-23 Thread Stefan Krah
Stefan Krah added the comment: Thanks, fixed. -- resolution: -> fixed stage: -> committed/rejected status: open -> closed type: -> behavior ___ Python tracker ___

[issue15770] _testbuffer.get_contiguous() doesn't check input arguments

2012-08-23 Thread Roundup Robot
Roundup Robot added the comment: New changeset fa745ed89b7a by Stefan Krah in branch 'default': Issue #15770: Check invalid arguments in test function. Patch by Victor Stinner. http://hg.python.org/cpython/rev/fa745ed89b7a -- nosy: +python-dev ___ Pyt

[issue15770] _testbuffer.get_contiguous() doesn't check input arguments

2012-08-23 Thread STINNER Victor
New submission from STINNER Victor: _testbuffer.get_contiguous() abort with an assertion error if it gets invalid arguments. Attached patch adds tests for valid values. I found this bug using my fuzzer (fusil). -- components: Library (Lib) files: _testbuffer.patch keywords: patch messa