/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to breezy/tests/__init__.py

  • Committer: Jelmer Vernooij
  • Date: 2017-05-30 19:32:13 UTC
  • mfrom: (6637 work)
  • mto: This revision was merged to the branch mainline in revision 6639.
  • Revision ID: jelmer@jelmer.uk-20170530193213-qm21s6dc7dln237t
Merge trunk.

Show diffs side-by-side

added added

removed removed

Lines of Context:
3440
3440
    # than the fastest.
3441
3441
    partitions = [list() for i in range(count)]
3442
3442
    tests = iter_suite_tests(suite)
3443
 
    for partition, test in itertools.izip(itertools.cycle(partitions), tests):
 
3443
    for partition, test in zip(itertools.cycle(partitions), tests):
3444
3444
        partition.append(test)
3445
3445
    return partitions
3446
3446