summaryrefslogtreecommitdiffstats
path: root/Demo/pysvr/README
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1997-07-19 21:00:47 (GMT)
committerGuido van Rossum <guido@python.org>1997-07-19 21:00:47 (GMT)
commit5c8b9911750565713cba39fd8835cc951ddf2adf (patch)
treef161359096a8e5a11630f55d6091e5bad8a44680 /Demo/pysvr/README
parent6e614e3d2a94abb329e727ca41bbf4fbba268701 (diff)
downloadcpython-5c8b9911750565713cba39fd8835cc951ddf2adf.zip
cpython-5c8b9911750565713cba39fd8835cc951ddf2adf.tar.gz
cpython-5c8b9911750565713cba39fd8835cc951ddf2adf.tar.bz2
New example of threaded embedding
Diffstat (limited to 'Demo/pysvr/README')
-rw-r--r--Demo/pysvr/README9
1 files changed, 9 insertions, 0 deletions
diff --git a/Demo/pysvr/README b/Demo/pysvr/README
new file mode 100644
index 0000000..5e64e38
--- /dev/null
+++ b/Demo/pysvr/README
@@ -0,0 +1,9 @@
+This is an example of a multi-threaded C application embedding a
+Python interpreter.
+
+The particular application is a multi-threaded telnet-like server that
+provides you with a Python prompt (instead of a shell prompt).
+
+The file pysvr.py is a prototype in Python.
+
+THIS APPLICATION IS NOT SECURE -- ONLY USE IT FOR TESTING!