Home
last modified time | relevance | path

Searched refs:_start_response (Results 1 – 18 of 18) sorted by relevance

/dports/devel/py-repoze.tm2/repoze.tm2-2.1/repoze/tm/
H A Dtests.py8 def _start_response(self, status, headers, exc_info=None): member in TestTM
20 result = [chunk for chunk in tm(env, self._start_response)]
29 result = [chunk for chunk in tm({}, self._start_response)]
39 result = [chunk for chunk in tm({}, self._start_response)]
50 [chunk for chunk in tm({}, self._start_response)]
62 [chunk for chunk in tm({}, self._start_response)]
81 [chunk for chunk in tm({}, self._start_response)]
92 [chunk for chunk in tm({}, self._start_response)]
104 [chunk for chunk in tm({}, self._start_response)]
121 [chunk for chunk in tm(env, self._start_response)]
[all …]
/dports/devel/py-repoze.who/repoze.who-2.4/repoze/who/tests/
H A Dtest_restrict.py60 def _start_response(status, headers): function
65 restrict(environ, _start_response)
79 def _start_response(status, headers): function
84 restrict(environ, _start_response)
99 def _start_response(status, headers): function
104 restrict(environ, _start_response)
/dports/www/py-spyne/spyne-2.13.16/spyne/util/
H A Dtest.py25 def _start_response(code, headers): function
53 for s in app(request, _start_response):
/dports/www/py-turbogears2/TurboGears2-2.3.12/tg/support/
H A Dtransaction_manager.py33 def _start_response(status, headers, exc_info=None): function
51 response_data = self.app(environ, _start_response)
H A Dmiddlewares.py16 def _start_response(status, headers, exc_info=None): function
20 app_iter = application(environ, _start_response)
/dports/net/py-smbprotocol/smbprotocol-1.8.3/smbprotocol/
H A Dchange_notify.py258 self._start_response(request)
261 return change_notify, self._start_response
263 def _start_response(self, request): member in FileSystemWatcher
/dports/devel/py-ddtrace/ddtrace-0.56.1/ddtrace/contrib/pylons/
H A Dmiddleware.py66 def _start_response(status, *args, **kwargs): function
79 return self.app(environ, _start_response)
/dports/devel/mercurial/mercurial-6.0/mercurial/hgweb/
H A Dserver.py147 self._start_response("500 Internal Server Error", [])
165 self._start_response(pycompat.strurl(common.statusmessage(404)), [])
239 for chunk in self.server.application(env, self._start_response):
270 def _start_response(self, http_status, headers, exc_info=None): member in _httprequesthandler
/dports/www/py-hypercorn/Hypercorn-0.12.0/src/hypercorn/middleware/
H A Dwsgi.py82 def _start_response( member in _WSGIInstance
102 for output in self.wsgi_app(environ, self._start_response):
/dports/devel/py-pyro/Pyro4-4.77/tests/PyroTests/
H A Dtest_httpgateway.py66 for ret in application(environ, self._start_response):
72 def _start_response(self, status, headers): member in WSGITestBase
/dports/www/trac-devel/Trac-1.5.3/trac/web/
H A Dwsgi.py116 response = application(self.environ, self._start_response)
132 def _start_response(self, status, headers, exc_info=None): member in WSGIGateway
H A Dapi.py540 self._start_response = start_response
703 self._write = self._start_response(self._status, self._outheaders,
/dports/net/google-cloud-sdk/google-cloud-sdk/lib/third_party/dulwich/
H A Dweb.py256 self._start_response = start_response
272 return self._start_response(status, self._headers)
/dports/devel/dulwich/dulwich-0.19.16/dulwich/
H A Dweb.py270 self._start_response = start_response
286 return self._start_response(status, self._headers)
/dports/devel/dulwich/dulwich-0.19.16/dulwich/tests/
H A Dtest_web.py115 self._req = self._req_class(self._environ, self._start_response,
121 def _start_response(self, status, headers): member in WebTestCase
/dports/www/mod_wsgi4/mod_wsgi-4.7.0/src/server/
H A D__init__.py1342 def _start_response(status, response_headers, *args): function
1357 result = self.application(environ, _start_response)
/dports/devel/py-keystonemiddleware/keystonemiddleware-9.3.0/keystonemiddleware/tests/unit/auth_token/
H A Dtest_auth_token_middleware.py917 def _start_response(status_code, headerlist, exc_info=None): function
926 r = m(env, _start_response)
/dports/devel/mercurial/mercurial-6.0/tests/
H A Dtest-lfs-serve-access.t365 for chunk in self.server.application(env, self._start_response):