~ubuntu-branches/ubuntu/utopic/bittornado/utopic

« back to all changes in this revision

Viewing changes to BitTornado/SocketHandler.py

  • Committer: Bazaar Package Importer
  • Author(s): Cameron Dale
  • Date: 2008-07-19 16:08:44 UTC
  • mfrom: (0.1.14 intrepid)
  • Revision ID: james.westby@ubuntu.com-20080719160844-nnmp02ar9pri55v1
Tags: 0.3.18-7
* Refresh all the quilt patches (Closes: #485320)
* Update standards version to 3.8.0
  - Add a README.source file pointing to the quilt documentation
* medium urgency to get it into lenny

Show diffs side-by-side

added added

removed removed

Lines of Context:
312
312
                if (event & POLLIN):
313
313
                    try:
314
314
                        s.last_hit = clock()
315
 
                        data = s.socket.recv(100000)
 
315
                        data = s.socket.recv(self.readsize)
316
316
                        if not data:
317
317
                            self._close_socket(s)
318
318
                        else: