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: fix reliance on refcounting in test_itertools
Type: behavior Stage: resolved
Components: Versions: Python 2.7
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: Nosy List: alex, bdkearns, python-dev, rhettinger
Priority: normal Keywords: patch

Created on 2014-08-24 20:25 by bdkearns, last changed 2022-04-11 14:58 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
test_itertools.patch bdkearns, 2014-08-24 20:25
Messages (3)
msg225835 - (view) Author: Brian Kearns (bdkearns) * Date: 2014-08-24 20:25
The test fails on Python implementations with non-refcounted GCs without this line.
msg225837 - (view) Author: Brian Kearns (bdkearns) * Date: 2014-08-24 20:36
Should go on py3k branches too...
msg225846 - (view) Author: Roundup Robot (python-dev) (Python triager) Date: 2014-08-24 23:08
New changeset a91f8766f755 by Benjamin Peterson in branch '2.7':
allow test to work on implementations not using ref-counting (closes #22265)
http://hg.python.org/cpython/rev/a91f8766f755

New changeset e6bb59b6b85c by Benjamin Peterson in branch '3.4':
allow test to work on implementations not using ref-counting (closes #22265)
http://hg.python.org/cpython/rev/e6bb59b6b85c

New changeset ed4ffd602f4e by Benjamin Peterson in branch 'default':
merge 3.4 (#22265)
http://hg.python.org/cpython/rev/ed4ffd602f4e
History
Date User Action Args
2022-04-11 14:58:07adminsetgithub: 66461
2014-08-24 23:08:56python-devsetstatus: open -> closed

nosy: + python-dev
messages: + msg225846

resolution: fixed
stage: resolved
2014-08-24 20:52:28berker.peksagsetnosy: + rhettinger
2014-08-24 20:45:51alexsetnosy: + alex
2014-08-24 20:36:10bdkearnssetmessages: + msg225837
2014-08-24 20:25:50bdkearnscreate