[issue2231] Memory leak in itertools.chain()

2008-10-20 Thread Raymond Hettinger
Raymond Hettinger <[EMAIL PROTECTED]> added the comment: The affected code did not exist in Py2.5. The patch made it to both Py2.6 and Py3.0. Closing. -- status: open -> closed ___ Python tracker <[EMAIL PROTECTED]>

[issue2231] Memory leak in itertools.chain()

2008-10-20 Thread Martin v. Löwis
Changes by Martin v. Löwis <[EMAIL PROTECTED]>: -- status: closed -> open ___ Python tracker <[EMAIL PROTECTED]> ___ ___ Python-bugs-lis

[issue2231] Memory leak in itertools.chain()

2008-10-20 Thread Martin v. Löwis
Martin v. Löwis <[EMAIL PROTECTED]> added the comment: Backport candidate -- nosy: +loewis versions: +Python 2.5.3 -Python 2.6, Python 3.0 ___ Python tracker <[EMAIL PROTECTED]> __

[issue2231] Memory leak in itertools.chain()

2008-03-04 Thread Raymond Hettinger
Raymond Hettinger added the comment: Fixed in r61237. -- resolution: -> fixed status: open -> closed __ Tracker <[EMAIL PROTECTED]> __ ___ Pyth

[issue2231] Memory leak in itertools.chain()

2008-03-04 Thread Raymond Hettinger
Changes by Raymond Hettinger: -- assignee: -> rhettinger nosy: +rhettinger __ Tracker <[EMAIL PROTECTED]> __ ___ Python-bugs-list mailing list

[issue2231] Memory leak in itertools.chain()

2008-03-04 Thread Alexander Belopolsky
Alexander Belopolsky added the comment: Good catch, Hirokazu! The patch looks correct to me. Works as advertised on Mac OS 10.4. -- nosy: +belopolsky __ Tracker <[EMAIL PROTECTED]> __ __

[issue2231] Memory leak in itertools.chain()

2008-03-04 Thread Hirokazu Yamamoto
New submission from Hirokazu Yamamoto: Fixed memory leak in itertools.chain(). This fixes following refleak errors shown in issue2223. test_deque test_heapq test_itertools test_list test_set test_userlist -- components: Extension Modules files: fix_leak.patch keywords: patch messages: 63