summaryrefslogtreecommitdiffstatshomepage
path: root/examples/network
diff options
context:
space:
mode:
authorPaul Sokolovsky <pfalcon@users.sourceforge.net>2016-10-26 12:25:33 +0300
committerPaul Sokolovsky <pfalcon@users.sourceforge.net>2016-10-26 12:25:33 +0300
commit73b72799f3e500f6db0834b30b1c68fc8941093f (patch)
treefc8f03e25de32aa1fc8e4d3dffb156b5e0c80b93 /examples/network
parentf00ecdb54d06f57e318d00db00df82e6450e5901 (diff)
downloadmicropython-73b72799f3e500f6db0834b30b1c68fc8941093f.tar.gz
micropython-73b72799f3e500f6db0834b30b1c68fc8941093f.zip
examples/http_server_simplistic: Add "not suitable for real use" note.
Diffstat (limited to 'examples/network')
-rw-r--r--examples/network/http_server_simplistic.py2
1 files changed, 2 insertions, 0 deletions
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: