Lines Matching refs:args
75 def log_message(self, format, *args):
83 format%args))
115 def log_request(self, format, *args):
117 BaseHTTPRequestHandler.log_request(self, format, *args)
189 args = parser.parse_args()
191 support.verbose = args.verbose
192 if args.use_stats_handler:
199 if args.curve_name:
200 context.set_ecdh_curve(args.curve_name)
201 if args.dh_file:
202 context.load_dh_params(args.dh_file)
203 if args.ciphers:
204 context.set_ciphers(args.ciphers)
206 server = HTTPSServer(("", args.port), handler_class, context)
207 if args.verbose:
208 print("Listening on https://localhost:{0.port}".format(args))