~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/test_http.py

  • Committer: John Arbash Meinel
  • Date: 2011-05-26 08:05:45 UTC
  • mfrom: (5916 +trunk)
  • mto: This revision was merged to the branch mainline in revision 5917.
  • Revision ID: john@arbash-meinel.com-20110526080545-5tprxfczyj4bfk0o
Merge bzr.dev 5916 and make sure the right patch is applied.

Show diffs side-by-side

added added

removed removed

Lines of Context:
2013
2013
        tests.TestCase.setUp(self)
2014
2014
        self.server = self._activity_server(self._protocol_version)
2015
2015
        self.server.start_server()
2016
 
        self.activities = {}
 
2016
        _activities = {} # Don't close over self and create a cycle
2017
2017
        def report_activity(t, bytes, direction):
2018
 
            count = self.activities.get(direction, 0)
 
2018
            count = _activities.get(direction, 0)
2019
2019
            count += bytes
2020
 
            self.activities[direction] = count
 
2020
            _activities[direction] = count
 
2021
        self.activities = _activities
2021
2022
 
2022
2023
        # We override at class level because constructors may propagate the
2023
2024
        # bound method and render instance overriding ineffective (an