~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/plugins/launchpad/test_register.py

  • Committer: John Arbash Meinel
  • Date: 2006-09-23 06:39:46 UTC
  • mfrom: (2034 +trunk)
  • mto: This revision was merged to the branch mainline in revision 2035.
  • Revision ID: john@arbash-meinel.com-20060923063946-e596c8a8eef928b4
[merge] bzr.dev 2034

Show diffs side-by-side

added added

removed removed

Lines of Context:
71
71
 
72
72
class InstrumentedXMLRPCTransport(xmlrpclib.Transport):
73
73
 
 
74
    # Python 2.5's xmlrpclib looks for this.
 
75
    _use_datetime = False
 
76
 
74
77
    def __init__(self, testcase):
75
78
        self.testcase = testcase
76
79