~vcs-imports/trac/trunk

« back to all changes in this revision

Viewing changes to trac/web/tests/api.py

  • Committer: rjollos
  • Date: 2021-01-07 18:30:19 UTC
  • Revision ID: svn-v4:af82e41b-90c4-0310-8c96-b1721e28e2e2:trunk:17498
1.5.3dev: Refactor uses of `super` for Python 3

Refs #13338.

Show diffs side-by-side

added added

removed removed

Lines of Context:
103
103
                self.headers_sent.update(dict(headers))
104
104
                return write
105
105
 
106
 
            super(RequestWithSentAttrs, self).__init__(environ, start_response)
 
106
            super().__init__(environ, start_response)
107
107
 
108
108
        @property
109
109
        def response_sent(self):