(self)
| 206 | self.formatter = FancyFormatter(sys.stdout, sys.stderr, options.hide_error_codes) |
| 207 | |
| 208 | def _response_metadata(self) -> dict[str, str]: |
| 209 | py_version = f"{self.options.python_version[0]}_{self.options.python_version[1]}" |
| 210 | return {"platform": self.options.platform, "python_version": py_version} |
| 211 | |
| 212 | def serve(self) -> None: |
| 213 | """Serve requests, synchronously (no thread or fork).""" |