From 73b72799f3e500f6db0834b30b1c68fc8941093f Mon Sep 17 00:00:00 2001 From: Paul Sokolovsky Date: Wed, 26 Oct 2016 12:25:33 +0300 Subject: [PATCH] examples/http_server_simplistic: Add "not suitable for real use" note. --- examples/network/http_server_simplistic.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/examples/network/http_server_simplistic.py b/examples/network/http_server_simplistic.py index f932e48f56..67ecb1ad7a 100644 --- a/examples/network/http_server_simplistic.py +++ b/examples/network/http_server_simplistic.py @@ -1,3 +1,5 @@ +# Do not use this code in real projects! Read +# http_server_simplistic_commented.py for details. try: import usocket as socket except: