[New-bugs-announce] [issue21375] Fix and test overflow behavior in the C version of heapq

Raymond Hettinger report at bugs.python.org
Mon Apr 28 19:59:54 CEST 2014


New submission from Raymond Hettinger:

The Py_ssizet indexes can overflow the "childpos" variable:

    childpos = 2*pos + 1;    /* leftmost child position  */
    while (childpos < endpos) ...


http://googleresearch.blogspot.com/2006/06/extra-extra-read-all-about-it-nearly.html

----------
assignee: rhettinger
components: Extension Modules
messages: 217389
nosy: rhettinger
priority: normal
severity: normal
stage: needs patch
status: open
title: Fix and test overflow behavior in the C version of heapq
type: behavior
versions: Python 2.7, Python 3.4, Python 3.5

_______________________________________
Python tracker <report at bugs.python.org>
<http://bugs.python.org/issue21375>
_______________________________________


More information about the New-bugs-announce mailing list