This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: [2.7 regression] test_asynchat test failure on i586-linux-gnu
Type: crash Stage: resolved
Components: Library (Lib) Versions: Python 2.7
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: rhettinger Nosy List: benjamin.peterson, doko, python-dev, rhettinger
Priority: release blocker Keywords:

Created on 2015-05-11 00:14 by doko, last changed 2022-04-11 14:58 by admin. This issue is now closed.

Messages (2)
msg242875 - (view) Author: Matthias Klose (doko) * (Python committer) Date: 2015-05-11 00:13
I see this on i586-linux-gnu and i686-linux-gnu. Reverting the 95844:fb6c2fbbde34 commit makes the problem go away.

python: ../Modules/_collectionsmodule.c:711: deque_del_item: Assertion `i >= 0 && i < (((PyVarObject*)(deque))->ob_size)' failed.
Makefile:818: recipe for target 'test' failed
make[1]: *** [test] Aborted (core dumped)
msg243273 - (view) Author: Roundup Robot (python-dev) (Python triager) Date: 2015-05-15 16:19
New changeset 7adfc99103d2 by Benjamin Peterson in branch '2.7':
deque is not varsized, so using Py_SIZE is nonsensical (closes #24162)
https://hg.python.org/cpython/rev/7adfc99103d2
History
Date User Action Args
2022-04-11 14:58:16adminsetgithub: 68350
2015-05-15 16:19:48python-devsetstatus: open -> closed

nosy: + python-dev
messages: + msg243273

resolution: fixed
stage: resolved
2015-05-13 17:53:31benjamin.petersonsetassignee: rhettinger
2015-05-11 00:14:00dokocreate