summaryrefslogtreecommitdiffstats
path: root/Python/codecs.c
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2008-02-23 22:35:33 (GMT)
committerGeorg Brandl <georg@python.org>2008-02-23 22:35:33 (GMT)
commit0bb8567e1e6cfe1e65ac5113945096bf2d369fa4 (patch)
tree66dd26fe4465d41dfeb19a7b5ec23d42beb2009a /Python/codecs.c
parentc76ea279659a77ae17b592e89c99b2ecbe3716a5 (diff)
downloadcpython-0bb8567e1e6cfe1e65ac5113945096bf2d369fa4.zip
cpython-0bb8567e1e6cfe1e65ac5113945096bf2d369fa4.tar.gz
cpython-0bb8567e1e6cfe1e65ac5113945096bf2d369fa4.tar.bz2
In test_heapq and test_bisect, test both the Python and the C implementation.
Originally written for GHOP by Josip Dzolonga, heavily patched by me.
Diffstat (limited to 'Python/codecs.c')
0 files changed, 0 insertions, 0 deletions
pan class="hl com">** packaging of this file. Please review the following information to ** ensure the GNU Lesser General Public License version 2.1 requirements ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain ** additional rights. These rights are described in the Nokia Qt LGPL ** Exception version 1.1, included in the file LGPL_EXCEPTION.txt in this ** package. ** ** If you have questions regarding the use of this file, please contact ** Nokia at qt-info@nokia.com. ** ** ** ** ** ** ** ** ** $QT_END_LICENSE$ ** ****************************************************************************/ //! [0] QStringList list = myIndex.toStringList(); QStringList::Iterator it = list.begin(); while(it != list.end()) { myProcessing(*it); ++it; } //! [0]