/usr/lib/python3/dist-packages/twisted/web/test
NameSizeModeActions
__pycache__/-0755rm
injectionhelpers.py55930644editdlrm
requesthelper.py151210644editdlrm
test_agent.py1210420644editdlrm
test_cgi.py151190644editdlrm
test_client.py13640644editdlrm
test_distrib.py180360644editdlrm
test_domhelpers.py110340644editdlrm
test_error.py159460644editdlrm
test_flatten.py221300644editdlrm
test_html.py12220644editdlrm
test_http.py1555120644editdlrm
test_http2.py1078460644editdlrm
test_httpauth.py237860644editdlrm
test_http_headers.py232920644editdlrm
test_newclient.py1093660644editdlrm
test_proxy.py200460644editdlrm
test_resource.py91360644editdlrm
test_script.py38140644editdlrm
test_soap.py31340644editdlrm
test_stan.py72520644editdlrm
test_static.py681970644editdlrm
test_tap.py118420644editdlrm
test_template.py288410644editdlrm
test_util.py150490644editdlrm
test_vhost.py77360644editdlrm
test_web.py691450644editdlrm
test_webclient.py117920644editdlrm
test_web__responses.py8290644editdlrm
test_wsgi.py765120644editdlrm
test_xml.py420300644editdlrm
test_xmlrpc.py305720644editdlrm
_util.py31740644editdlrm
__init__.py1070644editdlrm
Edit: /usr/lib/python3/dist-packages/twisted/web/test/test_web__responses.py (829B)
# Copyright (c) Twisted Matrix Laboratories. # See LICENSE for details. """ The L{_response} module contains constants for all standard HTTP codes, along with a mapping to the corresponding phrases. """ import string from twisted.trial import unittest from twisted.web import _responses class ResponseTests(unittest.TestCase): def test_constants(self): """ All constants besides C{RESPONSES} defined in L{_response} are integers and are keys in C{RESPONSES}. """ for sym in dir(_responses): if sym == "RESPONSES": continue if all((c == "_" or c in string.ascii_uppercase) for c in sym): val = getattr(_responses, sym) self.assertIsInstance(val, int) self.assertIn(val, _responses.RESPONSES)