~ubuntu-branches/ubuntu/wily/dulwich/wily-proposed

« back to all changes in this revision

Viewing changes to dulwich/greenthreads.py

  • Committer: Package Import Robot
  • Author(s): Jelmer Vernooij
  • Date: 2015-09-13 18:15:59 UTC
  • mfrom: (1.5.9) (31.1.3 experimental)
  • Revision ID: package-import@ubuntu.com-20150913181559-qqjuqtjpr26xzkqs
Tags: 0.11.1-1
* New upstream release.
 + Fixes formatting in assertion. Closes: #789546
 + Fixes FTBFS on some architectures. Closes: #798565
* debian/copyright: Fix license header to be unique.
* debian/watch: Fix watch URL to use pypi redirector service.
* Add 01_refs_unicode: Support running on platforms that can't encode
  certain characters.

Show diffs side-by-side

added added

removed removed

Lines of Context:
132
132
            return len(self._shas)
133
133
        while len(self.finder.objects_to_send):
134
134
            jobs = []
135
 
            for _ in xrange(0, len(self.finder.objects_to_send)):
 
135
            for _ in range(0, len(self.finder.objects_to_send)):
136
136
                jobs.append(self.p.spawn(self.finder.next))
137
137
            gevent.joinall(jobs)
138
138
            for j in jobs: