From c0493036d057612230ffe33c270ec86fc43ff9a8 Mon Sep 17 00:00:00 2001 From: GalaxySnail Date: Tue, 26 Apr 2022 02:06:05 +0800 Subject: [PATCH] Remove python version in trio-server.py Now trio 0.20.0 requires python 3.7 or later. But IMO it's not necessary to mention it here and update it every year. --- examples/trio-server.py | 1 - 1 file changed, 1 deletion(-) diff --git a/examples/trio-server.py b/examples/trio-server.py index 7b2bd56..f983a9a 100644 --- a/examples/trio-server.py +++ b/examples/trio-server.py @@ -1,6 +1,5 @@ # A simple HTTP server implemented using h11 and Trio: # http://trio.readthedocs.io/en/latest/index.html -# (so requires python 3.5+). # # All requests get echoed back a JSON document containing information about # the request.